Skip to content

Commit

Permalink
Merge pull request #37 from rozPierog/master
Browse files Browse the repository at this point in the history
Clean & update build.gradle
  • Loading branch information
greedbell committed Oct 19, 2018
2 parents 9c1ffa4 + 9354a8e commit b30c839
Showing 1 changed file with 9 additions and 18 deletions.
27 changes: 9 additions & 18 deletions android/build.gradle
@@ -1,24 +1,14 @@
buildscript {
repositories {
jcenter()
}

dependencies {
classpath 'com.android.tools.build:gradle:2.2.3'
}
}

apply plugin: 'com.android.library'

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

defaultConfig {
minSdkVersion 16
targetSdkVersion 23
versionCode 1
versionName "1.0"
targetSdkVersion 27
versionCode 2
versionName "1.1"
}
lintOptions {
abortOnError false
Expand All @@ -35,7 +25,8 @@ repositories {
}

dependencies {
compile "com.android.support:appcompat-v7:23.0.1"
compile 'com.facebook.react:react-native:+'
compile fileTree( dir: "libs", includes: ['*.jar'] )
implementation "com.android.support:appcompat-v7:27.1.1"
implementation 'com.facebook.react:react-native:+'
implementation fileTree( dir: "libs", includes: ['*.jar'] )
}

0 comments on commit b30c839

Please sign in to comment.