Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 2 additions & 5 deletions common/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -13,14 +13,13 @@ android {
defaultConfig {
minSdk = 24
testInstrumentationRunner = "androidx.test.runner.AndroidJUnitRunner"

consumerProguardFiles("consumer-rules.pro")
}

buildTypes {
release {
isMinifyEnabled = false
proguardFiles(
getDefaultProguardFile("proguard-android-optimize.txt"), "proguard-rules.pro"
)
}
}
}
Expand All @@ -31,8 +30,6 @@ configurePublishing {
}

dependencies {
implementation(fileTree(mapOf("dir" to "libs", "include" to listOf("*.jar"))))

implementation("androidx.appcompat:appcompat:${rootProject.extra["appCompatVer"]}")
implementation("androidx.core:core-ktx:${rootProject.extra["coreKtxVer"]}")
testImplementation("junit:junit:${rootProject.extra["junitVer"]}")
Expand Down
File renamed without changes.
3 changes: 1 addition & 2 deletions settings.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,8 @@ dependencyResolutionManagement {
repositories {
google()
mavenCentral()
jcenter()
// e.g this is how you would add jitpack
maven("https://jitpack.io")
// Add any repositories you would be adding to all projects here
}
}
}