summaryrefslogtreecommitdiffstats
path: root/colorPicker/build.gradle
diff options
context:
space:
mode:
Diffstat (limited to 'colorPicker/build.gradle')
-rw-r--r--colorPicker/build.gradle39
1 files changed, 39 insertions, 0 deletions
diff --git a/colorPicker/build.gradle b/colorPicker/build.gradle
new file mode 100644
index 000000000..0f3f1c23a
--- /dev/null
+++ b/colorPicker/build.gradle
@@ -0,0 +1,39 @@
+apply plugin: 'com.android.library'
+
+android {
+ compileSdkVersion 33
+
+ defaultConfig {
+ minSdkVersion 15
+ targetSdkVersion 33
+
+ testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
+
+ }
+
+ buildTypes {
+ release {
+ minifyEnabled false
+ proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
+ }
+ }
+
+}
+
+
+// Add a new configuration to hold your dependencies
+configurations {
+ libConfig
+}
+
+dependencies {
+ implementation fileTree(include: ['*.jar'], dir: 'libs')
+ //noinspection GradleCompatible
+ implementation 'androidx.appcompat:appcompat:1.5.1'
+ implementation 'androidx.preference:preference:1.2.0'
+ testImplementation 'junit:junit:4.13.2'
+ androidTestImplementation 'androidx.test:runner:1.5.2'
+ androidTestImplementation 'androidx.test.espresso:espresso-core:3.5.0'
+
+}
+