Я создал простую android библиотеку. Проблема в том, что всякий раз, когда он используется в любом проекте и создается apk для проекта, устанавливаются два разных экземпляра apk.
Как и в приведенном выше примере, после того, как я добавляю библиотеку в проект и запускаю ее, устанавливаются два разных apk.
Я знаю, что проблема в библиотеке. Вы можете получить доступ к библиотеке здесь .
Ниже приведен файл Gradle моей библиотеки
apply plugin: 'com.android.library'
apply plugin: 'maven-publish'
ext {
bintrayRepo = 'KenyanCounties' // Repo name in bintray dashboard
bintrayName = 'studios.luxurious.kenya47counties' // package name of the bintray repo
publishedGroupId = 'com.martinmbae.kenyan.47counties' // this is the ID we want to see in implementation line
libraryName = 'kenyacountieslibrary' // this is the module name of library
artifact = 'library' // this is the artifact we want to see in implementation line
libraryDescription = 'An android library that displays all kenyan libraries for selection. Each library countains a name, county number and a flag' // description of library
siteUrl = 'https://github.com/MartinMbae/Sample' // git repo url
gitUrl = 'https://github.com/MartinMbae/Sample.git' // git repo vcs url
libraryVersion = '1.0.1' // library version
developerId = 'martinmbae' // This is your bintray username
developerName = 'Martin Mbae' // Developer's name
developerEmail = 'martinmbae.codemaster@gmail.com' // Developer's email
licenseName = 'The Apache Software License, Version 2.0' // for example, The Apache Software License, Version 2.0
licenseUrl = 'http://www.apache.org/licenses/LICENSE-2.0.txt' // for example, http://www.apache.org/licenses/LICENSE-2.0.txt
allLicenses = ["Apache-2.0"] // array of licenses, for example, ["Apache-2.0"]
}
android {
compileSdkVersion 29
buildToolsVersion "29.0.3"
defaultConfig {
minSdkVersion 21
targetSdkVersion 29
versionCode 1
versionName "1.0"
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
}
}
}
dependencies {
implementation fileTree(dir: 'libs', include: ['*.jar'])
implementation 'androidx.appcompat:appcompat:1.1.0'
implementation 'androidx.constraintlayout:constraintlayout:1.1.3'
testImplementation 'junit:junit:4.12'
androidTestImplementation 'androidx.test.ext:junit:1.1.1'
androidTestImplementation 'androidx.test.espresso:espresso-core:3.2.0'
}
apply from: 'publish.gradle'
//apply from: 'bintray.gradle'