Skip to content
This repository was archived by the owner on Dec 3, 2021. It is now read-only.
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 2 additions & 3 deletions android/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,6 @@ apply plugin: 'com.android.library'

android {
compileSdkVersion 24
buildToolsVersion "23.0.2"

defaultConfig {
minSdkVersion 16
Expand All @@ -30,6 +29,6 @@ repositories {
}

dependencies {
compile 'status-im:function:0.0.1'
compile 'com.facebook.react:react-native:+'
api 'status-im:function:0.0.1'
api 'com.facebook.react:react-native:+'
}
9 changes: 4 additions & 5 deletions examples/SampleRN20/android/app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,6 @@ def enableProguardInReleaseBuilds = false

android {
compileSdkVersion 23
buildToolsVersion "23.0.1"

defaultConfig {
applicationId "com.samplern20"
Expand Down Expand Up @@ -119,8 +118,8 @@ android {
}

dependencies {
compile fileTree(dir: "libs", include: ["*.jar"])
compile "com.android.support:appcompat-v7:23.0.1"
compile "com.facebook.react:react-native:0.20.+"
compile project(':react-native-webview-bridge')
api fileTree(dir: "libs", include: ["*.jar"])
api "com.android.support:appcompat-v7:23.0.1"
api "com.facebook.react:react-native:0.20.+"
api project(':react-native-webview-bridge')
}