Initial version
[xposed-ouya-plain-purchases.git] / xposed-ouya-plain-purchases / build.gradle
1 apply plugin: 'com.android.application'
2
3 android {
4     compileSdkVersion 16
5     buildToolsVersion '19.1.0'
6     defaultConfig {
7         applicationId "de.cweiske.ouya.plainpurchases"
8         minSdkVersion 15
9         targetSdkVersion 16
10         versionCode 1
11         versionName "1.0"
12     }
13     buildTypes {
14         release {
15             minifyEnabled false
16         }
17     }
18     lintOptions {
19         checkReleaseBuilds false
20         // Or, if you prefer, you can continue to check for errors in release builds,
21         // but continue the build even when errors are found:
22         abortOnError false
23     }
24 }
25
26 dependencies {
27     implementation fileTree(dir: 'libs', include: ['*.jar'])
28     compileOnly 'de.robv.android.xposed:api:53'
29 }