Set versionName to 0.1.0

This commit is contained in:
jarnedemeulemeester 2021-08-10 17:30:08 +02:00
parent 5cde430986
commit 19c8b916e1
No known key found for this signature in database
GPG key ID: 60884A0C1EBA43E5

View file

@ -17,7 +17,7 @@ android {
minSdkVersion 24
targetSdkVersion 31
versionCode 1
versionName "1.0.0"
versionName "0.1.0"
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
}
@ -29,6 +29,7 @@ android {
}
}
compileOptions {
coreLibraryDesugaringEnabled true
sourceCompatibility JavaVersion.VERSION_1_8
targetCompatibility JavaVersion.VERSION_1_8
}
@ -102,4 +103,6 @@ dependencies {
testImplementation 'junit:junit:4.13.2'
androidTestImplementation 'androidx.test.ext:junit:1.1.3'
androidTestImplementation 'androidx.test.espresso:espresso-core:3.4.0'
coreLibraryDesugaring 'com.android.tools:desugar_jdk_libs:1.1.5'
}