summaryrefslogtreecommitdiff
path: root/app/build.gradle
diff options
context:
space:
mode:
authorJavier <dev.git@javispedro.com>2020-02-12 00:08:06 +0100
committerJavier <dev.git@javispedro.com>2020-02-12 20:48:39 +0100
commitac329e140435c3488ea5dfef89d237e2325da9e4 (patch)
tree47f03d0ae7ef63f9649aed834c0110b47e9936b5 /app/build.gradle
downloadwallmotion-ac329e140435c3488ea5dfef89d237e2325da9e4.tar.gz
wallmotion-ac329e140435c3488ea5dfef89d237e2325da9e4.zip
initial import
Diffstat (limited to 'app/build.gradle')
-rw-r--r--app/build.gradle32
1 files changed, 32 insertions, 0 deletions
diff --git a/app/build.gradle b/app/build.gradle
new file mode 100644
index 0000000..adb5b49
--- /dev/null
+++ b/app/build.gradle
@@ -0,0 +1,32 @@
+apply plugin: 'com.android.application'
+
+android {
+ compileSdkVersion 29
+ buildToolsVersion "29.0.2"
+ defaultConfig {
+ applicationId "com.javispedro.wallmotion"
+ minSdkVersion 23
+ targetSdkVersion 29
+ versionCode 1
+ versionName "1.0"
+ testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
+ }
+ buildTypes {
+ release {
+ minifyEnabled false
+ proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
+ }
+ }
+}
+
+dependencies {
+ implementation fileTree(dir: 'libs', include: ['*.jar'])
+ implementation 'androidx.appcompat:appcompat:1.0.2'
+ implementation 'androidx.constraintlayout:constraintlayout:1.1.3'
+ implementation 'com.google.android.material:material:1.0.0'
+ implementation 'androidx.preference:preference:1.1.0-alpha05'
+ testImplementation 'junit:junit:4.12'
+ androidTestImplementation 'androidx.test.ext:junit:1.1.0'
+ androidTestImplementation 'androidx.test.espresso:espresso-core:3.1.1'
+ implementation 'org.jetbrains:annotations-java5:15.0'
+}