Skip to content
This repository has been archived by the owner on Apr 6, 2021. It is now read-only.

Gradle task assembleDebug issue resolved & set min API level to 16 #19

Merged
merged 1 commit into from
Jul 11, 2020
Merged
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
4 changes: 2 additions & 2 deletions android/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -30,14 +30,14 @@ apply plugin: 'kotlin-android'
apply plugin: 'com.google.protobuf'

android {
compileSdkVersion 28
compileSdkVersion 29

sourceSets {
main.java.srcDirs += 'src/main/kotlin'
main.proto.srcDirs += '../protos'
}
defaultConfig {
minSdkVersion 23
minSdkVersion 16
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
}
lintOptions {
Expand Down