aboutsummaryrefslogtreecommitdiff
path: root/ohmysaf/build.gradle
diff options
context:
space:
mode:
Diffstat (limited to 'ohmysaf/build.gradle')
-rw-r--r--ohmysaf/build.gradle46
1 files changed, 46 insertions, 0 deletions
diff --git a/ohmysaf/build.gradle b/ohmysaf/build.gradle
new file mode 100644
index 0000000..7c421e9
--- /dev/null
+++ b/ohmysaf/build.gradle
@@ -0,0 +1,46 @@
+apply plugin: 'com.android.library'
+
+android {
+ compileSdkVersion 28
+
+
+ defaultConfig {
+ minSdkVersion 14
+ targetSdkVersion 28
+ versionCode rootProject.ext.version
+ versionName "${rootProject.ext.version}"
+
+ testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
+
+ }
+
+ buildTypes {
+ release {
+ minifyEnabled false
+ proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
+ }
+ }
+
+ packageBuildConfig false
+}
+
+dependencies {
+ implementation fileTree(dir: 'libs', include: ['*.jar'])
+ testImplementation 'junit:junit:4.12'
+ androidTestImplementation 'com.android.support.test:runner:1.0.2'
+ androidTestImplementation 'com.android.support.test.espresso:espresso-core:3.0.2'
+ implementation 'androidx.documentfile:documentfile:1.0.1'
+ compileOnly 'androidx.annotation:annotation:1.0.2'
+}
+
+
+apply plugin: 'maven'
+group = "moe.yuuta.ohmysaf"
+version = rootProject.ext.version
+uploadArchives {
+ repositories {
+ mavenDeployer {
+ repository(url: uri('../repo'))
+ }
+ }
+} \ No newline at end of file