diff --git a/.idea/codeStyles/Project.xml b/.idea/codeStyles/Project.xml
new file mode 100644
index 0000000..7643783
--- /dev/null
+++ b/.idea/codeStyles/Project.xml
@@ -0,0 +1,123 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ xmlns:android
+
+ ^$
+
+
+
+
+
+
+
+
+ xmlns:.*
+
+ ^$
+
+
+ BY_NAME
+
+
+
+
+
+
+ .*:id
+
+ http://schemas.android.com/apk/res/android
+
+
+
+
+
+
+
+
+ .*:name
+
+ http://schemas.android.com/apk/res/android
+
+
+
+
+
+
+
+
+ name
+
+ ^$
+
+
+
+
+
+
+
+
+ style
+
+ ^$
+
+
+
+
+
+
+
+
+ .*
+
+ ^$
+
+
+ BY_NAME
+
+
+
+
+
+
+ .*
+
+ http://schemas.android.com/apk/res/android
+
+
+ ANDROID_ATTRIBUTE_ORDER
+
+
+
+
+
+
+ .*
+
+ .*
+
+
+ BY_NAME
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/.idea/codeStyles/codeStyleConfig.xml b/.idea/codeStyles/codeStyleConfig.xml
new file mode 100644
index 0000000..79ee123
--- /dev/null
+++ b/.idea/codeStyles/codeStyleConfig.xml
@@ -0,0 +1,5 @@
+
+
+
+
+
\ No newline at end of file
diff --git a/.idea/copyright/Marc_Auberer.xml b/.idea/copyright/Marc_Auberer.xml
index e9cf413..5a24187 100644
--- a/.idea/copyright/Marc_Auberer.xml
+++ b/.idea/copyright/Marc_Auberer.xml
@@ -1,6 +1,6 @@
-
+
\ No newline at end of file
diff --git a/.idea/misc.xml b/.idea/misc.xml
index ef61796..860da66 100644
--- a/.idea/misc.xml
+++ b/.idea/misc.xml
@@ -1,6 +1,6 @@
-
+
diff --git a/LICENSE b/LICENSE
index 110b877..a5403ab 100644
--- a/LICENSE
+++ b/LICENSE
@@ -1,6 +1,6 @@
MIT License
-Copyright (c) 2020-2021 Marc Auberer
+Copyright (c) 2020-2022 Marc Auberer
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
diff --git a/README.md b/README.md
index bea46e8..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
@@ -149,4 +149,4 @@ If you want to contribute to this project, please feel free to send us a pull re
## Credits
Thanks to all contributors and translators!
-© Marc Auberer 2020-2021
+© Marc Auberer 2020-2022
diff --git a/adobecolor/build.gradle b/adobecolor/build.gradle
index 9208910..f05493d 100644
--- a/adobecolor/build.gradle
+++ b/adobecolor/build.gradle
@@ -1,5 +1,5 @@
/*
- * Copyright © Marc Auberer 2021. All rights reserved
+ * Copyright © Marc Auberer 2020-2022. All rights reserved
*/
plugins {
@@ -9,12 +9,12 @@ plugins {
}
android {
- compileSdkVersion 30
- buildToolsVersion "30.0.3"
+ compileSdkVersion 32
+ buildToolsVersion "32.0.0"
defaultConfig {
minSdkVersion 19
- targetSdkVersion 30
+ targetSdkVersion 32
versionCode libraryVersionCode
versionName libraryVersion
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
@@ -43,9 +43,9 @@ android {
dependencies {
// Base dependencies
implementation "org.jetbrains.kotlin:kotlin-stdlib:$kotlinVersion"
- implementation 'androidx.core:core-ktx:1.6.0'
- implementation 'androidx.appcompat:appcompat:1.3.1'
- implementation 'com.google.android.material:material:1.4.0'
+ implementation 'androidx.core:core-ktx:1.7.0'
+ implementation 'androidx.appcompat:appcompat:1.4.1'
+ implementation 'com.google.android.material:material:1.5.0'
// External dependencies
implementation 'com.github.florent37:inline-activity-result-kotlin:1.0.4'
diff --git a/adobecolor/gradle.properties b/adobecolor/gradle.properties
index bd29436..c4df41a 100644
--- a/adobecolor/gradle.properties
+++ b/adobecolor/gradle.properties
@@ -1,5 +1,5 @@
#
-# Copyright © Marc Auberer 2021. All rights reserved
+# Copyright © Marc Auberer 2020-2022. All rights reserved
#
POM_NAME=Adobe Color Tool
diff --git a/adobecolor/src/androidTest/java/com/chillibits/adobecolor/ExampleInstrumentedTest.kt b/adobecolor/src/androidTest/java/com/chillibits/adobecolor/ExampleInstrumentedTest.kt
index 6c45d1a..fac2010 100644
--- a/adobecolor/src/androidTest/java/com/chillibits/adobecolor/ExampleInstrumentedTest.kt
+++ b/adobecolor/src/androidTest/java/com/chillibits/adobecolor/ExampleInstrumentedTest.kt
@@ -1,5 +1,5 @@
/*
- * Copyright © Marc Auberer 2021. All rights reserved
+ * Copyright © Marc Auberer 2020-2022. All rights reserved
*/
package com.chillibits.adobecolor
diff --git a/adobecolor/src/main/AndroidManifest.xml b/adobecolor/src/main/AndroidManifest.xml
index 7c84c2e..f1483d1 100644
--- a/adobecolor/src/main/AndroidManifest.xml
+++ b/adobecolor/src/main/AndroidManifest.xml
@@ -1,6 +1,6 @@
diff --git a/adobecolor/src/main/res/values-fr/strings.xml b/adobecolor/src/main/res/values-fr/strings.xml
index 275ade8..0c89077 100644
--- a/adobecolor/src/main/res/values-fr/strings.xml
+++ b/adobecolor/src/main/res/values-fr/strings.xml
@@ -1,6 +1,6 @@
diff --git a/adobecolor/src/main/res/values/strings.xml b/adobecolor/src/main/res/values/strings.xml
index 9694384..db32727 100644
--- a/adobecolor/src/main/res/values/strings.xml
+++ b/adobecolor/src/main/res/values/strings.xml
@@ -1,6 +1,6 @@
diff --git a/adobecolor/src/test/java/com/chillibits/adobecolor/ExampleUnitTest.kt b/adobecolor/src/test/java/com/chillibits/adobecolor/ExampleUnitTest.kt
index 319f9e7..33c7e49 100644
--- a/adobecolor/src/test/java/com/chillibits/adobecolor/ExampleUnitTest.kt
+++ b/adobecolor/src/test/java/com/chillibits/adobecolor/ExampleUnitTest.kt
@@ -1,5 +1,5 @@
/*
- * Copyright © Marc Auberer 2021. All rights reserved
+ * Copyright © Marc Auberer 2020-2022. All rights reserved
*/
package com.chillibits.adobecolor
diff --git a/app/build.gradle b/app/build.gradle
index 0748ea9..1e25477 100644
--- a/app/build.gradle
+++ b/app/build.gradle
@@ -1,5 +1,5 @@
/*
- * Copyright © Marc Auberer 2021. All rights reserved
+ * Copyright © Marc Auberer 2020-2022. All rights reserved
*/
plugins {
@@ -8,13 +8,13 @@ plugins {
}
android {
- compileSdkVersion 30
- buildToolsVersion "30.0.3"
+ compileSdkVersion 32
+ buildToolsVersion "32.0.0"
defaultConfig {
applicationId "com.chillibits.adobecolorsample"
minSdkVersion 19
- targetSdkVersion 30
+ targetSdkVersion 32
versionCode libraryVersionCode
versionName libraryVersion
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
@@ -43,10 +43,10 @@ dependencies {
// Base dependencies
implementation "org.jetbrains.kotlin:kotlin-stdlib:$kotlinVersion"
- implementation 'androidx.core:core-ktx:1.6.0'
- implementation 'androidx.appcompat:appcompat:1.3.1'
- implementation 'com.google.android.material:material:1.4.0'
- implementation 'androidx.constraintlayout:constraintlayout:2.1.0'
+ implementation 'androidx.core:core-ktx:1.7.0'
+ implementation 'androidx.appcompat:appcompat:1.4.1'
+ implementation 'com.google.android.material:material:1.5.0'
+ implementation 'androidx.constraintlayout:constraintlayout:2.1.3'
// Test dependencies
testImplementation 'junit:junit:4.13.2'
diff --git a/app/src/androidTest/java/com/chillibits/adobecolorsample/ExampleInstrumentedTest.kt b/app/src/androidTest/java/com/chillibits/adobecolorsample/ExampleInstrumentedTest.kt
index 1c7a421..87f8636 100644
--- a/app/src/androidTest/java/com/chillibits/adobecolorsample/ExampleInstrumentedTest.kt
+++ b/app/src/androidTest/java/com/chillibits/adobecolorsample/ExampleInstrumentedTest.kt
@@ -1,5 +1,5 @@
/*
- * Copyright © Marc Auberer 2021. All rights reserved
+ * Copyright © Marc Auberer 2020-2022. All rights reserved
*/
package com.chillibits.adobecolorsample
diff --git a/app/src/main/AndroidManifest.xml b/app/src/main/AndroidManifest.xml
index 15ce9ab..601da66 100644
--- a/app/src/main/AndroidManifest.xml
+++ b/app/src/main/AndroidManifest.xml
@@ -1,6 +1,6 @@
+ android:windowSoftInputMode="adjustPan"
+ android:exported="true">
diff --git a/app/src/main/java/com/chillibits/adobecolorsample/ColorAdapter.kt b/app/src/main/java/com/chillibits/adobecolorsample/ColorAdapter.kt
index a7bb65f..7feea79 100644
--- a/app/src/main/java/com/chillibits/adobecolorsample/ColorAdapter.kt
+++ b/app/src/main/java/com/chillibits/adobecolorsample/ColorAdapter.kt
@@ -1,5 +1,5 @@
/*
- * Copyright © Marc Auberer 2021. All rights reserved
+ * Copyright © Marc Auberer 2020-2022. All rights reserved
*/
package com.chillibits.adobecolorsample
diff --git a/app/src/main/java/com/chillibits/adobecolorsample/Extensions.kt b/app/src/main/java/com/chillibits/adobecolorsample/Extensions.kt
index 2eac9d3..0cfb730 100644
--- a/app/src/main/java/com/chillibits/adobecolorsample/Extensions.kt
+++ b/app/src/main/java/com/chillibits/adobecolorsample/Extensions.kt
@@ -1,5 +1,5 @@
/*
- * Copyright © Marc Auberer 2021. All rights reserved
+ * Copyright © Marc Auberer 2020-2022. All rights reserved
*/
package com.chillibits.adobecolorsample
diff --git a/app/src/main/java/com/chillibits/adobecolorsample/MainActivity.kt b/app/src/main/java/com/chillibits/adobecolorsample/MainActivity.kt
index e58b21d..583b0f4 100644
--- a/app/src/main/java/com/chillibits/adobecolorsample/MainActivity.kt
+++ b/app/src/main/java/com/chillibits/adobecolorsample/MainActivity.kt
@@ -1,5 +1,5 @@
/*
- * Copyright © Marc Auberer 2021. All rights reserved
+ * Copyright © Marc Auberer 2020-2022. All rights reserved
*/
package com.chillibits.adobecolorsample
diff --git a/app/src/main/res/drawable/circle.xml b/app/src/main/res/drawable/circle.xml
index dfa9c6c..bd2fb8e 100644
--- a/app/src/main/res/drawable/circle.xml
+++ b/app/src/main/res/drawable/circle.xml
@@ -1,6 +1,6 @@
diff --git a/app/src/main/res/drawable/github.xml b/app/src/main/res/drawable/github.xml
index 3a35ede..f94312e 100644
--- a/app/src/main/res/drawable/github.xml
+++ b/app/src/main/res/drawable/github.xml
@@ -1,7 +1,7 @@