diff --git a/README.md b/README.md index a256d6d..eea0330 100644 --- a/README.md +++ b/README.md @@ -18,7 +18,7 @@ The first step for using this library is, to add it to the dependency section in Add dependencies to build.gradle file on module level (e.g. app/build.gradle): ```gradle -implementation 'com.chillibits:adobecolortool:1.0.3' +implementation 'com.chillibits:adobecolortool:1.0.4' ``` Also you have to declare a file provider in your manifest, which should look similar to this one: ```xml diff --git a/adobecolor/build.gradle b/adobecolor/build.gradle index 9be4b49..f05493d 100644 --- a/adobecolor/build.gradle +++ b/adobecolor/build.gradle @@ -14,7 +14,9 @@ android { defaultConfig { minSdkVersion 19 - targetSdkVersion 31 + targetSdkVersion 32 + versionCode libraryVersionCode + versionName libraryVersion testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner" consumerProguardFiles "consumer-rules.pro" } diff --git a/app/build.gradle b/app/build.gradle index bdcb688..1e25477 100644 --- a/app/build.gradle +++ b/app/build.gradle @@ -14,7 +14,7 @@ android { defaultConfig { applicationId "com.chillibits.adobecolorsample" minSdkVersion 19 - targetSdkVersion 31 + targetSdkVersion 32 versionCode libraryVersionCode versionName libraryVersion testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner" diff --git a/gradle.properties b/gradle.properties index bde4be0..82d30c0 100644 --- a/gradle.properties +++ b/gradle.properties @@ -23,11 +23,12 @@ android.useAndroidX=true android.enableJetifier=true # Kotlin code style for this project: "official" or "obsolete": kotlin.code.style=official +android.disableAutomaticComponentCreation=true # Custom settings GROUP=com.chillibits -VERSION=1.0.3 -VERSION_CODE=1003 +VERSION=1.0.4 +VERSION_CODE=1004 POM_URL=https://github.com/marcauberer/adobe-color-tool POM_SCM_URL=https://github.com/marcauberer/adobe-color-tool POM_SCM_CONNECTION=scm:git@github.com:marcauberer/adobe-color-tool.git