Rietveld Code Review Tool
Help | Bug tracker | Discussion group | Source code

Unified Diff: libadblockplus-android-tests/build.gradle

Issue 29347926: Issue 4248 - Add codestyle check
Patch Set: fixed broken url in rules Created April 28, 2017, 5:55 a.m.
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « libadblockplus-android-settings/build.gradle ('k') | libadblockplus-android-webview/build.gradle » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: libadblockplus-android-tests/build.gradle
diff --git a/libadblockplus-android-tests/build.gradle b/libadblockplus-android-tests/build.gradle
index 28bbec473298d04401f540d475366bda9589bef2..a0aa1be61c7d8b65aa9467f19e310eb67bd5f105 100644
--- a/libadblockplus-android-tests/build.gradle
+++ b/libadblockplus-android-tests/build.gradle
@@ -1,48 +1,48 @@
apply plugin: 'com.android.application'
allprojects {
- repositories {
- mavenLocal()
- mavenCentral()
- }
+ repositories {
+ mavenLocal()
+ mavenCentral()
+ }
}
repositories {
- mavenLocal()
- mavenCentral()
+ mavenLocal()
+ mavenCentral()
}
android {
- compileSdkVersion 16
- buildToolsVersion "25.0.0"
-
- defaultConfig {
- applicationId "org.adblockplus.libadblockplus.tests"
- minSdkVersion 11
- targetSdkVersion 16
- versionCode 1
- versionName "1.0"
- }
-
- sourceSets {
- main {
- manifest.srcFile 'AndroidManifest.xml'
+ compileSdkVersion 16
+ buildToolsVersion "25.0.0"
+
+ defaultConfig {
+ applicationId "org.adblockplus.libadblockplus.tests"
+ minSdkVersion 11
+ targetSdkVersion 16
+ versionCode 1
+ versionName "1.0"
}
- androidTest {
- manifest.srcFile 'AndroidManifest.xml'
- java.srcDirs = ['src']
+ sourceSets {
+ main {
+ manifest.srcFile 'AndroidManifest.xml'
+ }
+
+ androidTest {
+ manifest.srcFile 'AndroidManifest.xml'
+ java.srcDirs = ['src']
- jni {
- dependencies {
- project ":libadblockplus-android"
+ jni {
+ dependencies {
+ project ":libadblockplus-android"
+ }
+ }
}
- }
}
- }
}
dependencies {
- androidTestCompile project(':libadblockplus-android')
- androidTestCompile fileTree(include: ['*.jar'], dir: 'libs')
+ androidTestCompile project(':libadblockplus-android')
+ androidTestCompile fileTree(include: ['*.jar'], dir: 'libs')
}
« no previous file with comments | « libadblockplus-android-settings/build.gradle ('k') | libadblockplus-android-webview/build.gradle » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld