Skip to content

Commit bba0b9a

Browse files
committed
style(android): indentations
1 parent 223fef0 commit bba0b9a

File tree

1 file changed

+24
-24
lines changed

1 file changed

+24
-24
lines changed

android/build.gradle

Lines changed: 24 additions & 24 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
11
buildscript {
2-
if (project == rootProject) {
3-
repositories {
4-
mavenCentral()
5-
google()
6-
jcenter()
7-
}
8-
dependencies {
9-
classpath 'com.android.tools.build:gradle:3.2.1'
10-
}
2+
if (project == rootProject) {
3+
repositories {
4+
mavenCentral()
5+
google()
6+
jcenter()
117
}
8+
dependencies {
9+
classpath 'com.android.tools.build:gradle:3.2.1'
10+
}
11+
}
1212
}
1313

1414
apply plugin: 'com.android.library'
@@ -18,26 +18,26 @@ def DEFAULT_BUILD_TOOLS_VERSION = "30.0.2"
1818
def DEFAULT_TARGET_SDK_VERSION = 30
1919

2020
android {
21-
compileSdkVersion rootProject.hasProperty('compileSdkVersion') ? rootProject.compileSdkVersion : DEFAULT_COMPILE_SDK_VERSION
22-
buildToolsVersion rootProject.hasProperty('buildToolsVersion') ? rootProject.buildToolsVersion : DEFAULT_BUILD_TOOLS_VERSION
21+
compileSdkVersion rootProject.hasProperty('compileSdkVersion') ? rootProject.compileSdkVersion : DEFAULT_COMPILE_SDK_VERSION
22+
buildToolsVersion rootProject.hasProperty('buildToolsVersion') ? rootProject.buildToolsVersion : DEFAULT_BUILD_TOOLS_VERSION
2323

24-
defaultConfig {
25-
minSdkVersion 16
26-
targetSdkVersion rootProject.hasProperty('targetSdkVersion') ? rootProject.targetSdkVersion : DEFAULT_TARGET_SDK_VERSION
27-
versionCode 1
28-
versionName "1.6.2"
29-
}
30-
lintOptions {
31-
abortOnError false
32-
}
24+
defaultConfig {
25+
minSdkVersion 16
26+
targetSdkVersion rootProject.hasProperty('targetSdkVersion') ? rootProject.targetSdkVersion : DEFAULT_TARGET_SDK_VERSION
27+
versionCode 1
28+
versionName "1.6.2"
29+
}
30+
lintOptions {
31+
abortOnError false
32+
}
3333
}
3434

3535
repositories {
36-
mavenCentral()
36+
mavenCentral()
3737
}
3838

3939
dependencies {
40-
implementation 'com.facebook.react:react-native:+'
41-
api 'androidx.sqlite:sqlite:2.1.0'
42-
implementation 'com.github.requery:sqlite-android:3.36.0'
40+
implementation 'com.facebook.react:react-native:+'
41+
api 'androidx.sqlite:sqlite:2.1.0'
42+
implementation 'com.github.requery:sqlite-android:3.36.0'
4343
}

0 commit comments

Comments
 (0)