 Issue 29349720:
  Issue 4324 - Add Gradle build config  (Closed)
    
  
    Issue 29349720:
  Issue 4324 - Add Gradle build config  (Closed) 
  | Index: libadblockplus-android-tests/build.gradle | 
| diff --git a/libadblockplus-android-tests/build.gradle b/libadblockplus-android-tests/build.gradle | 
| new file mode 100644 | 
| index 0000000000000000000000000000000000000000..82ab52e0ab7fac22c34661e9b8b7f0fe96d5a574 | 
| --- /dev/null | 
| +++ b/libadblockplus-android-tests/build.gradle | 
| @@ -0,0 +1,50 @@ | 
| +apply plugin: 'com.android.application' | 
| + | 
| +allprojects { | 
| + repositories { | 
| + mavenLocal() | 
| + mavenCentral() | 
| + } | 
| +} | 
| + | 
| +repositories { | 
| + mavenLocal() | 
| + mavenCentral() | 
| +} | 
| + | 
| +android { | 
| + compileSdkVersion 16 | 
| + buildToolsVersion "22.0.1" | 
| + | 
| + defaultConfig { | 
| + applicationId "org.adblockplus.libadblockplus.tests" | 
| + minSdkVersion 9 | 
| + targetSdkVersion 16 | 
| + versionCode 359 | 
| + versionName "1.3" | 
| + | 
| + testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner" | 
| + } | 
| + | 
| + sourceSets { | 
| + main { | 
| + manifest.srcFile 'AndroidManifest.xml' | 
| + } | 
| + | 
| + androidTest { | 
| + manifest.srcFile 'AndroidManifest.xml' | 
| + java.srcDirs = ['src'] | 
| + | 
| + jni { | 
| + dependencies { | 
| + project ":libadblockplus-android" | 
| + } | 
| + } | 
| + } | 
| + } | 
| +} | 
| + | 
| +dependencies { | 
| + androidTestCompile project(':libadblockplus-android') | 
| + androidTestCompile fileTree(include: ['*.jar'], dir: 'libs') | 
| 
anton
2016/08/11 13:28:52
usually it's written like `androidTestCompile 'com
 | 
| +} |