dooboo-cli
=========
Installation
npm install -g dooboo-cli
Usage
Usage: dooboo [source file]
Options:
-V, --version output the version number
-h, --help output usage information
Commands:
init init boilerplate of dooboo generated app.
start start the project
test run test for your project
screen <c> generate screen component.
shared <c> generate shared component.
model <c> generate model class.
store <c> generate store class.
api <c> generate file for api call format.
Changelogs
[0.8.0]
- Fixed android to be build in one command along with ios.
Preview

Contribution
Troubleshoot
- If android build failed, apply below in
build.gradle
for react-native-localization
module.
apply plugin: 'com.android.library'
android {
compileSdkVersion rootProject.ext.compileSdkVersion
buildToolsVersion rootProject.ext.buildToolsVersion
defaultConfig {
minSdkVersion rootProject.ext.minSdkVersion
targetSdkVersion rootProject.ext.targetSdkVersion
versionCode 1
versionName "1.0"
ndk {
abiFilters "armeabi-v7a", "x86"
}
}
}
dependencies { compile 'com.facebook.react:react-native:+' }
TODO