Skip to content
This repository was archived by the owner on May 20, 2025. It is now read-only.

Commit 9cfbac6

Browse files
committed
update installed message in demo app
1 parent e36861e commit 9cfbac6

File tree

2 files changed

+3
-4
lines changed

2 files changed

+3
-4
lines changed

Examples/CodePushDemoApp/android/app/build.gradle

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -61,8 +61,7 @@ apply from: "react.gradle"
6161
apply from: "../../node_modules/react-native-code-push/android/codepush.gradle"
6262

6363
/**
64-
* Set this to true to create three separate APKs instead of one:
65-
* - A universal APK that works on all devices
64+
* Set this to true to create two separate APKs instead of one:
6665
* - An APK that only works on ARM devices
6766
* - An APK that only works on x86 devices
6867
* The advantage is the size of the APK is reduced by about 4MB.
@@ -93,7 +92,7 @@ android {
9392
splits {
9493
abi {
9594
enable enableSeparateBuildPerCPUArchitecture
96-
universalApk true
95+
universalApk false // Also generate an universal APK
9796
reset()
9897
include "armeabi-v7a", "x86"
9998
}

Examples/CodePushDemoApp/crossplatformdemo.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ let CodePushDemoApp = React.createClass({
5757
break;
5858
case CodePush.SyncStatus.UPDATE_INSTALLED:
5959
self.setState({
60-
syncMessage: "Update installed and will be run when the app next resumes.",
60+
syncMessage: "Update installed.",
6161
progress: false
6262
});
6363
break;

0 commit comments

Comments
 (0)