summaryrefslogtreecommitdiff
path: root/vdrmanager/de.bjusystems.vdrmanager/build.gradle
diff options
context:
space:
mode:
Diffstat (limited to 'vdrmanager/de.bjusystems.vdrmanager/build.gradle')
-rw-r--r--vdrmanager/de.bjusystems.vdrmanager/build.gradle50
1 files changed, 50 insertions, 0 deletions
diff --git a/vdrmanager/de.bjusystems.vdrmanager/build.gradle b/vdrmanager/de.bjusystems.vdrmanager/build.gradle
new file mode 100644
index 0000000..f759850
--- /dev/null
+++ b/vdrmanager/de.bjusystems.vdrmanager/build.gradle
@@ -0,0 +1,50 @@
+apply plugin: 'com.android.application'
+
+android {
+ lintOptions {
+ checkReleaseBuilds false
+ // Or, if you prefer, you can continue to check for errors in release builds,
+ // but continue the build even when errors are found:
+ abortOnError false
+ }
+
+
+ signingConfigs {
+ config {
+
+ }
+ }
+ compileSdkVersion 23
+ buildToolsVersion '26.0.2'
+ defaultConfig {
+ applicationId "de.bjusystems.vdrmanager"
+ minSdkVersion 8
+ targetSdkVersion 23
+ //vectorDrawables.useSupportLibrary = true
+
+ }
+
+
+ aaptOptions {
+ additionalParameters "--no-version-vectors"
+ }
+
+
+ buildTypes {
+ release {
+ minifyEnabled false
+ proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.txt'
+ zipAlignEnabled true
+ }
+ }
+}
+
+dependencies {
+ compile 'com.android.support:support-v4:23.4.0'
+ compile 'com.android.support:appcompat-v7:23.4.0'
+ compile 'com.j256.ormlite:ormlite-android:4.48'
+ compile 'com.j256.ormlite:ormlite-core:4.48'
+ compile 'org.slf4j:slf4j-android:1.7.19'
+ compile 'org.hampelratte:svdrp4j:1.1.0-SNAPSHOT'
+ compile 'com.android.support:recyclerview-v7:23.4.0'
+}