-
Notifications
You must be signed in to change notification settings - Fork 251
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix(react-native-cli): update suggested BAGP version for RN 0.73
- Loading branch information
1 parent
8d2c830
commit 3e6d6c2
Showing
3 changed files
with
86 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
37 changes: 37 additions & 0 deletions
37
...s/react-native-cli/src/lib/__test__/fixtures/root-build-before-without-agp-version.gradle
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,37 @@ | ||
// Top-level build file where you can add configuration options common to all sub-projects/modules. | ||
|
||
buildscript { | ||
ext { | ||
buildToolsVersion = "29.0.2" | ||
minSdkVersion = 16 | ||
compileSdkVersion = 29 | ||
targetSdkVersion = 29 | ||
} | ||
repositories { | ||
google() | ||
jcenter() | ||
} | ||
dependencies { | ||
classpath("com.android.tools.build:gradle") | ||
// NOTE: Do not place your application dependencies here; they belong | ||
// in the individual module build.gradle files | ||
} | ||
} | ||
|
||
allprojects { | ||
repositories { | ||
mavenLocal() | ||
maven { | ||
// All of React Native (JS, Obj-C sources, Android binaries) is installed from npm | ||
url("$rootDir/../node_modules/react-native/android") | ||
} | ||
maven { | ||
// Android JSC is installed from npm | ||
url("$rootDir/../node_modules/jsc-android/dist") | ||
} | ||
|
||
google() | ||
jcenter() | ||
maven { url 'https://www.jitpack.io' } | ||
} | ||
} |