Skip to content

Commit

Permalink
chore: release v8.1
Browse files Browse the repository at this point in the history
  • Loading branch information
tien committed Jun 28, 2021
1 parent eb90d29 commit fe9de20
Show file tree
Hide file tree
Showing 2 changed files with 25 additions and 20 deletions.
30 changes: 25 additions & 5 deletions app/build.gradle.kts
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
import com.google.protobuf.gradle.*

val composeVersion: String by rootProject.extra
val ktorVersion: String by rootProject.extra
val protoBufVersion: String by rootProject.extra
Expand All @@ -21,13 +23,14 @@ android {

defaultConfig {
applicationId = "com.tien.piholeconnect"
minSdk = 21
minSdk = 22
targetSdk = 30
versionCode = 20
versionName = "8.0"
versionName = "8.1"

testInstrumentationRunner = "androidx.test.runner.AndroidJUnitRunner"
ndk {
debugSymbolLevel = "FULL"
vectorDrawables {
useSupportLibrary = true
}
}

Expand All @@ -38,6 +41,9 @@ android {
getDefaultProguardFile("proguard-android-optimize.txt"),
"proguard-rules.pro"
)
ndk {
debugSymbolLevel = "FULL"
}
}
}
compileOptions {
Expand All @@ -59,7 +65,21 @@ android {
}
}

apply(from = "protobuf.gradle")
protobuf {
protoc {
artifact = "com.google.protobuf:protoc:$protoBufJavaLiteVersion"
}

generateProtoTasks {
all().forEach { task ->
task.builtins {
id("java") {
option("lite")
}
}
}
}
}

dependencies {
implementation(kotlin("stdlib"))
Expand Down
15 changes: 0 additions & 15 deletions app/protobuf.gradle

This file was deleted.

0 comments on commit fe9de20

Please sign in to comment.