- Choose board size
- Choose difficulty
- Choose color theme
- Swipes vs Joystick
- Teleportation
- JSC vs Hermes vs V8
git clone
npm i
cd ios && pod install
- Checkout the branch with different engine
npm i
cd android && ./gradlew clean
(if you built the project before)- Profile with Android Studio profiler
- Profile in release by adding in android/app/build.gradle
...
android {
lintOptions {
checkReleaseBuilds false
abortOnError false
}
compileSdkVersion rootProject.ext.compileSdkVersion
compileOptions {...
and in application in AndroidManifest.xml
...
android:debuggable="true">
...