1
0
mirror of https://gitcode.com/gh_mirrors/re/react-native-pushy.git synced 2025-09-17 23:26:11 +08:00
Code Issues Packages Projects Releases Wiki Activity GitHub Gitee

Update example to 0.66.0

This commit is contained in:
sunnylqm
2021-10-05 12:13:17 +08:00
parent bf1701031b
commit 775e567062
10 changed files with 2346 additions and 3120 deletions

View File

@@ -120,15 +120,16 @@ def jscFlavor = 'org.webkit:android-jsc:+'
*/
def enableHermes = project.ext.react.get("enableHermes", false);
/**
* Architectures to build native code for in debug.
*/
def nativeArchitectures = project.getProperties().get("reactNativeDebugArchitectures")
android {
ndkVersion rootProject.ext.ndkVersion
compileSdkVersion rootProject.ext.compileSdkVersion
compileOptions {
sourceCompatibility JavaVersion.VERSION_1_8
targetCompatibility JavaVersion.VERSION_1_8
}
defaultConfig {
applicationId "com.testhotupdate"
minSdkVersion rootProject.ext.minSdkVersion
@@ -155,6 +156,11 @@ android {
buildTypes {
debug {
signingConfig signingConfigs.debug
if (nativeArchitectures) {
ndk {
abiFilters nativeArchitectures.split(',')
}
}
}
release {
crunchPngs false
@@ -213,9 +219,9 @@ dependencies {
}
// Run this once to be able to run the application with BUCK
// puts all compile dependencies into folder libs for BUCK to use
// puts all implementation dependencies into folder libs for BUCK to use
task copyDownloadableDepsToLibs(type: Copy) {
from configurations.compile
from configurations.implementation
into 'libs'
}

View File

@@ -3,7 +3,6 @@
<!-- Base application theme. -->
<style name="AppTheme" parent="Theme.AppCompat.DayNight.NoActionBar">
<!-- Customize your theme here. -->
<item name="android:textColor">#000000</item>
</style>
</resources>