| apply plugin: 'com.android.application' |
| |
| android { |
| compileSdkVersion 24 |
| buildToolsVersion "24.0.1" |
| defaultConfig { |
| applicationId "org.libdll.so.am" |
| minSdkVersion 15 |
| targetSdkVersion 24 |
| versionCode 1 |
| versionName "1.0" |
| } |
| buildTypes { |
| release { |
| minifyEnabled false |
| proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro' |
| } |
| } |
| productFlavors {} |
| } |
| |
| buildscript { |
| repositories { |
| jcenter() |
| } |
| dependencies { |
| classpath 'com.android.tools.build:gradle:2.1.2' |
| |
| // NOTE: Do not place your application dependencies here; they belong |
| // in the individual module build.gradle files |
| } |
| } |
| |
| dependencies { |
| compile fileTree(dir: 'libs', include: ['*.jar']) |
| } |