Advertisement
you_are_adopted

app build.gradle

Feb 23rd, 2017
66
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. apply plugin: 'com.android.application'
  2.  
  3. android {
  4.     compileSdkVersion 21
  5.     buildToolsVersion "25.0.0"
  6.     compileOptions.encoding = 'ISO-8859-1'
  7.  
  8.     defaultConfig {
  9.         applicationId "yy.zzz.xxx"
  10.         minSdkVersion 21
  11.         targetSdkVersion 21
  12.     }
  13.  
  14.     buildTypes {
  15.         release {
  16.             minifyEnabled false
  17.             proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.txt'
  18.         }
  19.     }
  20. }
  21.  
  22. dependencies {
  23.     compile project(":ndkcode")
  24.     compile 'com.android.support:support-v4:21.+'
  25.     compile files('libs/jxl.jar')
  26.     compile files('libs/metaiosdk.jar')
  27. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement