build.gradle 334 B

12345678910111213141516171819
  1. apply plugin: 'com.android.library'
  2. android {
  3. compileSdkVersion target_sdk_version
  4. buildToolsVersion build_tools_version
  5. buildTypes {
  6. sourceSets {
  7. main { jni.srcDirs = [] }
  8. }
  9. }
  10. }
  11. dependencies {
  12. compile fileTree(dir: 'libs', include: ['*.jar'])
  13. testCompile 'junit:junit:4.12'
  14. }