diff options
Diffstat (limited to 'sample')
-rw-r--r-- | sample/build.gradle | 13 | ||||
-rw-r--r-- | sample/src/main/res/xml/kau_changelog.xml | 7 |
2 files changed, 13 insertions, 7 deletions
diff --git a/sample/build.gradle b/sample/build.gradle index 9f2162f..ff25f50 100644 --- a/sample/build.gradle +++ b/sample/build.gradle @@ -1,4 +1,5 @@ import kau.Dependencies +import kau.Versions apply plugin: 'com.android.application' apply plugin: 'kotlin-android' @@ -15,7 +16,7 @@ play { } android { - compileSdkVersion kau.Versions.targetSdk + compileSdkVersion Versions.targetSdk androidGitVersion { codeFormat = 'MMNNPPXX' @@ -24,8 +25,8 @@ android { defaultConfig { applicationId "ca.allanwang.kau.sample" - minSdkVersion kau.Versions.minSdk - targetSdkVersion kau.Versions.targetSdk + minSdkVersion Versions.minSdk + targetSdkVersion Versions.targetSdk versionName androidGitVersion.name() versionCode androidGitVersion.code() multiDexEnabled true @@ -90,12 +91,12 @@ android { } compileOptions { - sourceCompatibility JavaVersion.VERSION_1_8 - targetCompatibility JavaVersion.VERSION_1_8 + sourceCompatibility Versions.java + targetCompatibility Versions.java } kotlinOptions { - jvmTarget = JavaVersion.VERSION_1_8.toString() + jvmTarget = Versions.java.toString() } sourceSets { diff --git a/sample/src/main/res/xml/kau_changelog.xml b/sample/src/main/res/xml/kau_changelog.xml index c1648b0..2d47332 100644 --- a/sample/src/main/res/xml/kau_changelog.xml +++ b/sample/src/main/res/xml/kau_changelog.xml @@ -6,8 +6,13 @@ <item text="" /> --> + <version title="v6.3.0" /> + <item text="Add support for Arctic Fox 2020.3.1" /> + <item text="Move to new maven release system" /> + <item text="Many version bumps" /> + <version title="v6.2.0" /> - <item text="Add support for Android 4.2" /> + <item text="Add support for Android Studio 4.2" /> <item text="Remove all usages of kotlin synthetics" /> <item text="Many version bumps" /> <item text="Added Hilt dep" /> |