Merge pull request #2063 from ecency/nt/appcenter

Nt/appcenter
This commit is contained in:
Feruz M 2021-09-16 17:07:06 +03:00 committed by GitHub
commit 7fe8a28a6e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 6 additions and 5 deletions

View File

@ -124,6 +124,7 @@ def enableHermes = project.ext.react.get("enableHermes", false);
configurations.all {
resolutionStrategy {
force "com.facebook.soloader:soloader:0.9.0+"
force "androidx.browser:browser:1.3.0"
}
}
android {

View File

@ -14,7 +14,7 @@ def getNpmVersionArray() { // major [0], minor [1], patch [2]
buildscript {
ext {
buildToolsVersion = "29.0.3"
buildToolsVersion = "30.0.2"
minSdkVersion = 21
compileSdkVersion = 30
targetSdkVersion = 30
@ -23,10 +23,8 @@ buildscript {
firebaseVersion = "17.3.4"
}
repositories {
mavenCentral()
google()
mavenCentral()
}
dependencies {
classpath('com.android.tools.build:gradle:4.1.0')
@ -39,6 +37,7 @@ buildscript {
allprojects {
repositories {
google()
mavenCentral()
mavenLocal()
maven {
@ -50,7 +49,6 @@ allprojects {
url("$rootDir/../node_modules/jsc-android/dist")
}
google()
maven { url "https://www.jitpack.io" }

View File

@ -66,3 +66,5 @@ npx jetify
cd ios && pod install && cd ..
cd android && ./gradlew clean && cd ..