aboutsummaryrefslogtreecommitdiff
path: root/app/build.gradle
diff options
context:
space:
mode:
authorYuutaW <17158086+Trumeet@users.noreply.github.com>2019-04-18 19:36:25 -0700
committerYuutaW <17158086+Trumeet@users.noreply.github.com>2019-04-18 19:36:25 -0700
commite56c963435040fff497d92798ebbf2b16d63403f (patch)
tree63cfcfb12fa30f72eea675d7bbe9ae61a25104b2 /app/build.gradle
downloadOhMySAF-e56c963435040fff497d92798ebbf2b16d63403f.tar
OhMySAF-e56c963435040fff497d92798ebbf2b16d63403f.tar.gz
OhMySAF-e56c963435040fff497d92798ebbf2b16d63403f.tar.bz2
OhMySAF-e56c963435040fff497d92798ebbf2b16d63403f.zip
First Commit
Signed-off-by: YuutaW <17158086+Trumeet@users.noreply.github.com>
Diffstat (limited to 'app/build.gradle')
-rw-r--r--app/build.gradle29
1 files changed, 29 insertions, 0 deletions
diff --git a/app/build.gradle b/app/build.gradle
new file mode 100644
index 0000000..20b7511
--- /dev/null
+++ b/app/build.gradle
@@ -0,0 +1,29 @@
+apply plugin: 'com.android.application'
+
+android {
+ compileSdkVersion 28
+ defaultConfig {
+ applicationId "moe.yuuta.ohmysafdemo"
+ minSdkVersion 19
+ targetSdkVersion 28
+ versionCode rootProject.ext.version
+ 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.constraintlayout:constraintlayout:1.1.3'
+ testImplementation 'junit:junit:4.12'
+ androidTestImplementation 'androidx.test.ext:junit:1.1.0'
+ androidTestImplementation 'androidx.test.espresso:espresso-core:3.1.1'
+ implementation 'androidx.documentfile:documentfile:1.0.1'
+ implementation project(':ohmysaf')
+}