Open Devik0213 opened 5 years ago
안드로이드 스튜디오에서 신규프로젝트를 만들고,
project > app >
application 대신, 아래와같이 'library'로 바꿔줌. apply plugin: 'com.android.library' apply plugin: 'maven'
업로드 할 호스트 설정
uploadArchives { repositories.mavenDeployer { pom.groupId = 'com.a.b' pom.artifactId = 'emulator' pom.version = '0.1.0' repository(url: 'http://zzzzzzzz/nexus/content/repositories/releases') { authentication(userName: 'ANDROID_ID', password: '123123'); } snapshotRepository(url: 'http://zzzzzzzz/nexus/content/repositories/snapshots') { authentication(userName: 'ANDROID_ID', password: '123123'); } } }
라이브러리 배포 및 업로드
./gradlew install ./gradlew uploadArchives
안드로이드 스튜디오에서 신규프로젝트를 만들고,
project > app >
업로드 할 호스트 설정
라이브러리 배포 및 업로드