Skip to content

Commit 9576849

Browse files
authored
Merge pull request #50 from joaocarmo/next
[Release] v1.2.0-rc.7
2 parents 3a76e17 + 0ea5046 commit 9576849

37 files changed

+2327
-1906
lines changed

.github/workflows/publish-play-store.yml

+5
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,7 @@ env:
1919
KEYSTORE_PATH: android/app/litten.keystore
2020
KEYSTORE_PROPERTIES_PATH: android/keystore.properties
2121
OUTPUT_PATH: android/app/build/outputs/bundle/release/app-release.aab
22+
SECURE_PROPERTIES_PATH: android/secure.properties
2223
SERVICE_ACCOUNT_PATH: android/service-account.json
2324
WHATS_NEW_PATH: dist/whatsnew
2425

@@ -43,6 +44,10 @@ jobs:
4344
- name: Create .env file
4445
run: cp .env.example .env
4546

47+
- name: Create secure.properties
48+
run: |
49+
echo "${{ secrets.ANDROID_SECURE_PROPERTIES }}" | base64 --decode > ${{ env.SECURE_PROPERTIES_PATH }}
50+
4651
- name: Create service-account.json
4752
run: |
4853
echo "${{ secrets.ANDROID_SERVICE_ACCOUNT_JSON }}" | base64 --decode > ${{ env.SERVICE_ACCOUNT_PATH }}

.gitignore

+2-1
Original file line numberDiff line numberDiff line change
@@ -54,8 +54,9 @@ buck-out/
5454
# Bundle artifact
5555
*.jsbundle
5656

57-
# CocoaPods
57+
# Ruby / CocoaPods
5858
/ios/Pods/
59+
/vendor/bundle/
5960

6061
# Ruby
6162
vendor/

Gemfile.lock

+6-6
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ GEM
33
specs:
44
CFPropertyList (3.0.5)
55
rexml
6-
activesupport (6.1.4.4)
6+
activesupport (6.1.5)
77
concurrent-ruby (~> 1.0, >= 1.0.2)
88
i18n (>= 1.6, < 2)
99
minitest (>= 5.1)
@@ -16,10 +16,10 @@ GEM
1616
json (>= 1.5.1)
1717
atomos (0.1.3)
1818
claide (1.1.0)
19-
cocoapods (1.11.2)
19+
cocoapods (1.11.3)
2020
addressable (~> 2.8)
2121
claide (>= 1.0.2, < 2.0)
22-
cocoapods-core (= 1.11.2)
22+
cocoapods-core (= 1.11.3)
2323
cocoapods-deintegrate (>= 1.0.3, < 2.0)
2424
cocoapods-downloader (>= 1.4.0, < 2.0)
2525
cocoapods-plugins (>= 1.0.0, < 2.0)
@@ -34,7 +34,7 @@ GEM
3434
nap (~> 1.0)
3535
ruby-macho (>= 1.0, < 3.0)
3636
xcodeproj (>= 1.21.0, < 2.0)
37-
cocoapods-core (1.11.2)
37+
cocoapods-core (1.11.3)
3838
activesupport (>= 5.0, < 7)
3939
addressable (~> 2.8)
4040
algoliasearch (~> 1.0)
@@ -45,7 +45,7 @@ GEM
4545
public_suffix (~> 4.0)
4646
typhoeus (~> 1.0)
4747
cocoapods-deintegrate (1.0.5)
48-
cocoapods-downloader (1.5.1)
48+
cocoapods-downloader (1.6.2)
4949
cocoapods-plugins (1.0.0)
5050
nap
5151
cocoapods-search (1.0.1)
@@ -54,7 +54,7 @@ GEM
5454
netrc (~> 0.11)
5555
cocoapods-try (1.2.0)
5656
colored2 (3.1.2)
57-
concurrent-ruby (1.1.9)
57+
concurrent-ruby (1.1.10)
5858
escape (0.0.4)
5959
ethon (0.15.0)
6060
ffi (>= 1.15.0)

android/.project

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<?xml version="1.0" encoding="UTF-8"?>
22
<projectDescription>
3-
<name>android</name>
3+
<name>litten</name>
44
<comment>Project android created by Buildship.</comment>
55
<projects>
66
</projects>
@@ -16,7 +16,7 @@
1616
</natures>
1717
<filteredResources>
1818
<filter>
19-
<id>1640514693841</id>
19+
<id>0</id>
2020
<name></name>
2121
<type>30</type>
2222
<matcher>

android/.settings/org.eclipse.buildship.core.prefs

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ connection.gradle.distribution=GRADLE_DISTRIBUTION(WRAPPER)
55
connection.project.dir=
66
eclipse.preferences.version=1
77
gradle.user.home=
8-
java.home=/opt/homebrew/Cellar/openjdk/17.0.1_1
8+
java.home=/opt/homebrew/Cellar/openjdk@11/11.0.14.1/libexec/openjdk.jdk/Contents/Home
99
jvm.arguments=
1010
offline.mode=false
1111
override.workspace.settings=true

android/app/build.gradle

+87-8
Original file line numberDiff line numberDiff line change
@@ -133,9 +133,12 @@ def jscFlavor = 'org.webkit:android-jsc:+'
133133
def enableHermes = project.ext.react.get("enableHermes", false);
134134

135135
/**
136-
* Architectures to build native code for in debug.
136+
* Architectures to build native code for.
137137
*/
138-
def nativeArchitectures = project.getProperties().get("reactNativeDebugArchitectures")
138+
def reactNativeArchitectures() {
139+
def value = project.getProperties().get("reactNativeArchitectures")
140+
return value ? value.split(",") : ["armeabi-v7a", "x86", "x86_64", "arm64-v8a"]
141+
}
139142

140143
android {
141144
ndkVersion rootProject.ext.ndkVersion
@@ -155,13 +158,73 @@ android {
155158
file("../secure.properties")?.withInputStream { secureProps.load(it) }
156159
}
157160
resValue "string", "maps_api_key", (secureProps.getProperty("MAPS_API_KEY") ?: "")
161+
buildConfigField "boolean", "IS_NEW_ARCHITECTURE_ENABLED", isNewArchitectureEnabled().toString()
162+
if (isNewArchitectureEnabled()) {
163+
// We configure the NDK build only if you decide to opt-in for the New Architecture.
164+
externalNativeBuild {
165+
ndkBuild {
166+
arguments "APP_PLATFORM=android-21",
167+
"APP_STL=c++_shared",
168+
"NDK_TOOLCHAIN_VERSION=clang",
169+
"GENERATED_SRC_DIR=$buildDir/generated/source",
170+
"PROJECT_BUILD_DIR=$buildDir",
171+
"REACT_ANDROID_DIR=$rootDir/../node_modules/react-native/ReactAndroid",
172+
"REACT_ANDROID_BUILD_DIR=$rootDir/../node_modules/react-native/ReactAndroid/build"
173+
cFlags "-Wall", "-Werror", "-fexceptions", "-frtti", "-DWITH_INSPECTOR=1"
174+
cppFlags "-std=c++17"
175+
// Make sure this target name is the same you specify inside the
176+
// src/main/jni/Android.mk file for the `LOCAL_MODULE` variable.
177+
targets "rndiffapp_appmodules"
178+
}
179+
}
180+
}
158181
}
182+
if (isNewArchitectureEnabled()) {
183+
// We configure the NDK build only if you decide to opt-in for the New Architecture.
184+
externalNativeBuild {
185+
ndkBuild {
186+
path "$projectDir/src/main/jni/Android.mk"
187+
}
188+
}
189+
def reactAndroidProjectDir = project(':ReactAndroid').projectDir
190+
def packageReactNdkDebugLibs = tasks.register("packageReactNdkDebugLibs", Copy) {
191+
dependsOn(":ReactAndroid:packageReactNdkDebugLibsForBuck")
192+
from("$reactAndroidProjectDir/src/main/jni/prebuilt/lib")
193+
into("$buildDir/react-ndk/exported")
194+
}
195+
def packageReactNdkReleaseLibs = tasks.register("packageReactNdkReleaseLibs", Copy) {
196+
dependsOn(":ReactAndroid:packageReactNdkReleaseLibsForBuck")
197+
from("$reactAndroidProjectDir/src/main/jni/prebuilt/lib")
198+
into("$buildDir/react-ndk/exported")
199+
}
200+
afterEvaluate {
201+
// If you wish to add a custom TurboModule or component locally,
202+
// you should uncomment this line.
203+
// preBuild.dependsOn("generateCodegenArtifactsFromSchema")
204+
preDebugBuild.dependsOn(packageReactNdkDebugLibs)
205+
preReleaseBuild.dependsOn(packageReactNdkReleaseLibs)
206+
// Due to a bug inside AGP, we have to explicitly set a dependency
207+
// between configureNdkBuild* tasks and the preBuild tasks.
208+
// This can be removed once this is solved: https://issuetracker.google.com/issues/207403732
209+
configureNdkBuildRelease.dependsOn(preReleaseBuild)
210+
configureNdkBuildDebug.dependsOn(preDebugBuild)
211+
reactNativeArchitectures().each { architecture ->
212+
tasks.findByName("configureNdkBuildDebug[${architecture}]")?.configure {
213+
dependsOn("preDebugBuild")
214+
}
215+
tasks.findByName("configureNdkBuildRelease[${architecture}]")?.configure {
216+
dependsOn("preReleaseBuild")
217+
}
218+
}
219+
}
220+
}
221+
159222
splits {
160223
abi {
161224
reset()
162225
enable enableSeparateBuildPerCPUArchitecture
163226
universalApk false // If true, also generate a universal APK
164-
include "armeabi-v7a", "x86", "arm64-v8a", "x86_64"
227+
include (*reactNativeArchitectures())
165228
}
166229
}
167230
signingConfigs {
@@ -183,11 +246,6 @@ android {
183246
buildTypes {
184247
debug {
185248
signingConfig signingConfigs.debug
186-
if (nativeArchitectures) {
187-
ndk {
188-
abiFilters nativeArchitectures.split(',')
189-
}
190-
}
191249
}
192250
release {
193251
// Add the firebaseCrashlytics extension (by default, it's disabled
@@ -227,6 +285,7 @@ android {
227285

228286
dependencies {
229287
implementation fileTree(dir: "libs", include: ["*.jar"])
288+
230289
//noinspection GradleDynamicVersion
231290
implementation "com.facebook.react:react-native:+" // From node_modules
232291

@@ -257,6 +316,18 @@ dependencies {
257316
}
258317
}
259318

319+
if (isNewArchitectureEnabled()) {
320+
// If new architecture is enabled, we let you build RN from source
321+
// Otherwise we fallback to a prebuilt .aar bundled in the NPM package.
322+
// This will be applied to all the imported transtitive dependency.
323+
configurations.all {
324+
resolutionStrategy.dependencySubstitution {
325+
substitute(module("com.facebook.react:react-native"))
326+
.using(project(":ReactAndroid")).because("On New Architecture we're building React Native from source")
327+
}
328+
}
329+
}
330+
260331
// Run this once to be able to run the application with BUCK
261332
// puts all compile dependencies into folder libs for BUCK to use
262333
task copyDownloadableDepsToLibs(type: Copy) {
@@ -265,3 +336,11 @@ task copyDownloadableDepsToLibs(type: Copy) {
265336
}
266337

267338
apply from: file("../../node_modules/@react-native-community/cli-platform-android/native_modules.gradle"); applyNativeModulesAppBuildGradle(project)
339+
340+
def isNewArchitectureEnabled() {
341+
// To opt-in for the New Architecture, you can either:
342+
// - Set `newArchEnabled` to true inside the `gradle.properties` file
343+
// - Invoke gradle with `-newArchEnabled=true`
344+
// - Set an environment variable `ORG_GRADLE_PROJECT_newArchEnabled=true`
345+
return project.hasProperty("newArchEnabled") && project.newArchEnabled == "true"
346+
}

android/app/src/debug/AndroidManifest.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,6 @@
88
android:usesCleartextTraffic="true"
99
tools:targetApi="28"
1010
tools:ignore="GoogleAppIndexingWarning">
11-
<activity android:name="com.facebook.react.devsupport.DevSettingsActivity" />
11+
<activity android:name="com.facebook.react.devsupport.DevSettingsActivity" android:exported="false" />
1212
</application>
1313
</manifest>

android/app/src/debug/java/com/litten/ReactNativeFlipper.java

+3-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/**
2-
* Copyright (c) Facebook, Inc. and its affiliates.
2+
* Copyright (c) Meta Platforms, Inc. and affiliates.
33
*
44
* <p>This source code is licensed under the MIT license found in the LICENSE file in the root
55
* directory of this source tree.
@@ -19,6 +19,7 @@
1919
import com.facebook.flipper.plugins.network.NetworkFlipperPlugin;
2020
import com.facebook.flipper.plugins.react.ReactFlipperPlugin;
2121
import com.facebook.flipper.plugins.sharedpreferences.SharedPreferencesFlipperPlugin;
22+
import com.facebook.react.ReactInstanceEventListener;
2223
import com.facebook.react.ReactInstanceManager;
2324
import com.facebook.react.bridge.ReactContext;
2425
import com.facebook.react.modules.network.NetworkingModule;
@@ -51,7 +52,7 @@ public void apply(OkHttpClient.Builder builder) {
5152
ReactContext reactContext = reactInstanceManager.getCurrentReactContext();
5253
if (reactContext == null) {
5354
reactInstanceManager.addReactInstanceEventListener(
54-
new ReactInstanceManager.ReactInstanceEventListener() {
55+
new ReactInstanceEventListener() {
5556
@Override
5657
public void onReactContextInitialized(ReactContext reactContext) {
5758
reactInstanceManager.removeReactInstanceEventListener(this);

android/app/src/main/AndroidManifest.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@
5959
android:name=".MainActivity"
6060
android:label="@string/app_name"
6161
android:screenOrientation="portrait"
62-
android:configChanges="keyboard|keyboardHidden|orientation|screenSize|uiMode"
62+
android:configChanges="keyboard|keyboardHidden|orientation|screenLayout|screenSize|smallestScreenSize|uiMode"
6363
android:launchMode="singleTask"
6464
android:windowSoftInputMode="adjustPan"
6565
android:exported="true">

android/app/src/main/java/com/litten/MainActivity.java

+28-8
Original file line numberDiff line numberDiff line change
@@ -3,16 +3,31 @@
33
import android.os.Bundle;
44
import com.facebook.react.ReactActivity;
55
import com.facebook.react.ReactActivityDelegate;
6+
import com.facebook.react.ReactRootView;
67
import com.zoontek.rnbootsplash.RNBootSplash;
78

89
public class MainActivity extends ReactActivity {
10+
11+
/**
12+
* Returns the name of the main component registered from JavaScript. This is used to schedule
13+
* rendering of the component.
14+
*/
15+
@Override
16+
protected String getMainComponentName() {
17+
return "litten";
18+
}
19+
920
/**
10-
* Enables a Splash Screen
21+
* Returns the instance of the {@link ReactActivityDelegate}. There the RootView is created and
22+
* you can specify the rendered you wish to use (Fabric or the older renderer).
1123
*/
1224
@Override
1325
protected ReactActivityDelegate createReactActivityDelegate() {
1426
return new ReactActivityDelegate(this, getMainComponentName()) {
1527

28+
/**
29+
* Enables a Splash Screen
30+
*/
1631
@Override
1732
protected void loadApp(String appKey) {
1833
RNBootSplash.init(MainActivity.this);
@@ -21,12 +36,17 @@ protected void loadApp(String appKey) {
2136
};
2237
}
2338

24-
/**
25-
* Returns the name of the main component registered from JavaScript. This is used to schedule
26-
* rendering of the component.
27-
*/
28-
@Override
29-
protected String getMainComponentName() {
30-
return "litten";
39+
public static class MainActivityDelegate extends ReactActivityDelegate {
40+
public MainActivityDelegate(ReactActivity activity, String mainComponentName) {
41+
super(activity, mainComponentName);
42+
}
43+
44+
@Override
45+
protected ReactRootView createRootView() {
46+
ReactRootView reactRootView = new ReactRootView(getContext());
47+
// If you opted-in for the New Architecture, we enable the Fabric Renderer.
48+
reactRootView.setIsFabric(BuildConfig.IS_NEW_ARCHITECTURE_ENABLED);
49+
return reactRootView;
50+
}
3151
}
3252
}

android/app/src/main/java/com/litten/MainApplication.java

+12-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,9 @@
1010
import com.facebook.react.ReactInstanceManager;
1111
import com.facebook.react.ReactNativeHost;
1212
import com.facebook.react.ReactPackage;
13+
import com.facebook.react.config.ReactFeatureFlags;
1314
import com.facebook.soloader.SoLoader;
15+
import com.litten.newarchitecture.MainApplicationReactNativeHost;
1416
import com.facebook.react.bridge.JSIModulePackage;
1517
import com.swmansion.reanimated.ReanimatedJSIModulePackage;
1618

@@ -43,14 +45,23 @@ protected JSIModulePackage getJSIModulePackage() {
4345
}
4446
};
4547

48+
private final ReactNativeHost mNewArchitectureNativeHost =
49+
new MainApplicationReactNativeHost(this);
50+
4651
@Override
4752
public ReactNativeHost getReactNativeHost() {
48-
return mReactNativeHost;
53+
if (BuildConfig.IS_NEW_ARCHITECTURE_ENABLED) {
54+
return mNewArchitectureNativeHost;
55+
} else {
56+
return mReactNativeHost;
57+
}
4958
}
5059

5160
@Override
5261
public void onCreate() {
5362
super.onCreate();
63+
// If you opted-in for the New Architecture, we enable the TurboModule system
64+
ReactFeatureFlags.useTurboModules = BuildConfig.IS_NEW_ARCHITECTURE_ENABLED;
5465
SoLoader.init(this, /* native exopackage */ false);
5566
initializeFlipper(this, getReactNativeHost().getReactInstanceManager());
5667
}

0 commit comments

Comments
 (0)