1
0
Code Issues Pull Requests Packages Projects Releases Wiki Activity GitHub Gitee
react-native-pushy/Example/testHotUpdate/android/build.gradle

21 lines
606 B
Groovy
Raw Normal View History

2016-02-23 19:51:58 +08:00
// Top-level build file where you can add configuration options common to all sub-projects/modules.
buildscript {
2019-10-04 18:38:54 +08:00
ext {
2023-01-26 22:23:37 +08:00
buildToolsVersion = "33.0.0"
2020-09-01 15:29:13 +08:00
minSdkVersion = 21
2023-01-26 22:23:37 +08:00
compileSdkVersion = 33
targetSdkVersion = 33
2022-06-01 16:43:43 +08:00
2023-01-26 22:23:37 +08:00
// We use NDK 23 which has both M1 support and is the side-by-side NDK version from AGP.
ndkVersion = "23.1.7779620"
2019-10-04 18:38:54 +08:00
}
2016-02-23 19:51:58 +08:00
repositories {
2019-10-04 18:38:54 +08:00
google()
2021-10-05 12:13:17 +08:00
mavenCentral()
2016-02-23 19:51:58 +08:00
}
dependencies {
2023-01-26 22:23:37 +08:00
classpath("com.android.tools.build:gradle:7.3.1")
2022-06-01 16:43:43 +08:00
classpath("com.facebook.react:react-native-gradle-plugin")
2016-02-23 19:51:58 +08:00
}
2023-01-26 22:23:37 +08:00
}