forked from benoitvallon/react-native-nw-react-calculator
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
bd2e194
commit dc1aa0d
Showing
6 changed files
with
242 additions
and
69 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
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,97 @@ | ||
import org.apache.tools.ant.taskdefs.condition.Os | ||
|
||
def config = project.hasProperty("react") ? project.react : []; | ||
|
||
def bundleAssetName = config.bundleAssetName ?: "index.android.bundle" | ||
def entryFile = config.entryFile ?: "index.android.js" | ||
|
||
// because elvis operator | ||
def elvisFile(thing) { | ||
return thing ? file(thing) : null; | ||
} | ||
|
||
def reactRoot = elvisFile(config.root) ?: file("../../") | ||
def inputExcludes = config.inputExcludes ?: ["android/**", "ios/**"] | ||
|
||
void runBefore(String dependentTaskName, Task task) { | ||
Task dependentTask = tasks.findByPath(dependentTaskName); | ||
if (dependentTask != null) { | ||
dependentTask.dependsOn task | ||
} | ||
} | ||
|
||
gradle.projectsEvaluated { | ||
// Grab all build types and product flavors | ||
def buildTypes = android.buildTypes.collect { type -> type.name } | ||
def productFlavors = android.productFlavors.collect { flavor -> flavor.name } | ||
|
||
// When no product flavors defined, use empty | ||
if (!productFlavors) productFlavors.add('') | ||
|
||
productFlavors.each { productFlavorName -> | ||
buildTypes.each { buildTypeName -> | ||
// Create variant and target names | ||
def targetName = "${productFlavorName.capitalize()}${buildTypeName.capitalize()}" | ||
def targetPath = productFlavorName ? | ||
"${productFlavorName}/${buildTypeName}" : | ||
"${buildTypeName}" | ||
|
||
// React js bundle directories | ||
def jsBundleDirConfigName = "jsBundleDir${targetName}" | ||
def jsBundleDir = elvisFile(config."$jsBundleDirConfigName") ?: | ||
file("$buildDir/intermediates/assets/${targetPath}") | ||
|
||
def resourcesDirConfigName = "jsBundleDir${targetName}" | ||
def resourcesDir = elvisFile(config."${resourcesDirConfigName}") ?: | ||
file("$buildDir/intermediates/res/merged/${targetPath}") | ||
def jsBundleFile = file("$jsBundleDir/$bundleAssetName") | ||
|
||
// Bundle task name for variant | ||
def bundleJsAndAssetsTaskName = "bundle${targetName}JsAndAssets" | ||
|
||
def currentBundleTask = tasks.create( | ||
name: bundleJsAndAssetsTaskName, | ||
type: Exec) { | ||
group = "react" | ||
description = "bundle JS and assets for ${targetName}." | ||
|
||
// Create dirs if they are not there (e.g. the "clean" task just ran) | ||
doFirst { | ||
jsBundleDir.mkdirs() | ||
resourcesDir.mkdirs() | ||
} | ||
|
||
// Set up inputs and outputs so gradle can cache the result | ||
inputs.files fileTree(dir: reactRoot, excludes: inputExcludes) | ||
outputs.dir jsBundleDir | ||
outputs.dir resourcesDir | ||
|
||
// Set up the call to the react-native cli | ||
workingDir reactRoot | ||
|
||
// Set up dev mode | ||
def devEnabled = !targetName.toLowerCase().contains("release") | ||
if (Os.isFamily(Os.FAMILY_WINDOWS)) { | ||
commandLine "cmd", "/c", "react-native", "bundle", "--platform", "android", "--dev", "${devEnabled}", | ||
"--entry-file", entryFile, "--bundle-output", jsBundleFile, "--assets-dest", resourcesDir | ||
} else { | ||
commandLine "react-native", "bundle", "--platform", "android", "--dev", "${devEnabled}", | ||
"--entry-file", entryFile, "--bundle-output", jsBundleFile, "--assets-dest", resourcesDir | ||
} | ||
|
||
enabled config."bundleIn${targetName}" || | ||
config."bundleIn${buildTypeName.capitalize()}" ?: | ||
targetName.toLowerCase().contains("release") | ||
} | ||
|
||
// Hook bundle${productFlavor}${buildType}JsAndAssets into the android build process | ||
currentBundleTask.dependsOn("merge${targetName}Resources") | ||
currentBundleTask.dependsOn("merge${targetName}Assets") | ||
|
||
runBefore("processArmeabi-v7a${targetName}Resources", currentBundleTask) | ||
runBefore("processX86${targetName}Resources", currentBundleTask) | ||
runBefore("processUniversal${targetName}Resources", currentBundleTask) | ||
runBefore("process${targetName}Resources", currentBundleTask) | ||
} | ||
} | ||
} |
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
87 changes: 27 additions & 60 deletions
87
android/app/src/main/java/com/reactnativenwreactcalculator/MainActivity.java
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 |
---|---|---|
@@ -1,78 +1,45 @@ | ||
package com.reactnativenwreactcalculator; | ||
|
||
import android.app.Activity; | ||
import android.os.Bundle; | ||
import android.view.KeyEvent; | ||
|
||
import com.facebook.react.LifecycleState; | ||
import com.facebook.react.ReactInstanceManager; | ||
import com.facebook.react.ReactRootView; | ||
import com.facebook.react.modules.core.DefaultHardwareBackBtnHandler; | ||
import com.facebook.react.ReactActivity; | ||
import com.facebook.react.ReactPackage; | ||
import com.facebook.react.shell.MainReactPackage; | ||
import com.facebook.soloader.SoLoader; | ||
|
||
public class MainActivity extends Activity implements DefaultHardwareBackBtnHandler { | ||
|
||
private ReactInstanceManager mReactInstanceManager; | ||
private ReactRootView mReactRootView; | ||
|
||
@Override | ||
protected void onCreate(Bundle savedInstanceState) { | ||
super.onCreate(savedInstanceState); | ||
mReactRootView = new ReactRootView(this); | ||
|
||
mReactInstanceManager = ReactInstanceManager.builder() | ||
.setApplication(getApplication()) | ||
.setBundleAssetName("index.android.bundle") | ||
.setJSMainModuleName("src/index.android") | ||
.addPackage(new MainReactPackage()) | ||
.setUseDeveloperSupport(BuildConfig.DEBUG) | ||
.setInitialLifecycleState(LifecycleState.RESUMED) | ||
.build(); | ||
|
||
mReactRootView.startReactApplication(mReactInstanceManager, "nativeApp", null); | ||
import java.util.Arrays; | ||
import java.util.List; | ||
|
||
setContentView(mReactRootView); | ||
} | ||
|
||
@Override | ||
public boolean onKeyUp(int keyCode, KeyEvent event) { | ||
if (keyCode == KeyEvent.KEYCODE_MENU && mReactInstanceManager != null) { | ||
mReactInstanceManager.showDevOptionsDialog(); | ||
return true; | ||
} | ||
return super.onKeyUp(keyCode, event); | ||
} | ||
public class MainActivity extends ReactActivity { | ||
|
||
/** | ||
* Returns the name of the main component registered from JavaScript. | ||
* This is used to schedule rendering of the component. | ||
*/ | ||
@Override | ||
public void onBackPressed() { | ||
if (mReactInstanceManager != null) { | ||
mReactInstanceManager.onBackPressed(); | ||
} else { | ||
super.onBackPressed(); | ||
} | ||
protected String getMainComponentName() { | ||
return "nativeApp"; | ||
} | ||
|
||
@Override | ||
public void invokeDefaultOnBackPressed() { | ||
super.onBackPressed(); | ||
protected String getJSMainModuleName() { | ||
return "src/index.android"; | ||
} | ||
|
||
/** | ||
* Returns whether dev mode should be enabled. | ||
* This enables e.g. the dev menu. | ||
*/ | ||
@Override | ||
protected void onPause() { | ||
super.onPause(); | ||
|
||
if (mReactInstanceManager != null) { | ||
mReactInstanceManager.onPause(); | ||
} | ||
protected boolean getUseDeveloperSupport() { | ||
return BuildConfig.DEBUG; | ||
} | ||
|
||
/** | ||
* A list of packages used by the app. If the app uses additional views | ||
* or modules besides the default ones, add more packages here. | ||
*/ | ||
@Override | ||
protected void onResume() { | ||
super.onResume(); | ||
|
||
if (mReactInstanceManager != null) { | ||
mReactInstanceManager.onResume(this); | ||
} | ||
protected List<ReactPackage> getPackages() { | ||
return Arrays.<ReactPackage>asList( | ||
new MainReactPackage() | ||
); | ||
} | ||
} |
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