Skip to content

Commit

Permalink
Keep build.gradle and react-native build.gradle in line
Browse files Browse the repository at this point in the history
  • Loading branch information
crazycodeboy committed Jun 13, 2018
1 parent fddb5ad commit f2e7a68
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions android/build.gradle
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
apply plugin: 'com.android.library'

android {
compileSdkVersion 27
buildToolsVersion "27.0.3"
compileSdkVersion 23
buildToolsVersion "23.0.1"

defaultConfig {
minSdkVersion 16
targetSdkVersion 23
targetSdkVersion 22
versionCode 1
versionName "1.0"
}
Expand All @@ -19,8 +19,8 @@ android {
}

dependencies {
implementation fileTree(dir: 'libs', include: ['*.jar'])
testImplementation 'junit:junit:4.12'
implementation 'com.android.support:appcompat-v7:27.0.2'
implementation "com.facebook.react:react-native:+" // From node_modules
compile fileTree(dir: 'libs', include: ['*.jar'])
testCompile 'junit:junit:4.12'
compile 'com.android.support:appcompat-v7:23.0.1'
compile "com.facebook.react:react-native:+" // From node_modules
}

0 comments on commit f2e7a68

Please sign in to comment.