《React Native Awesome》这里fork过来的,汇集了各类react-native学习资料、工具、组件、开源App、资源下载、以及相关新闻等,只求精不求全。因后面无法 Pull requests 所以增加了居多资源,比如:一起踩坑、 音视频相机、图形动画...,比原项目内容更丰富 。https://juejin.im/entry/59dd786cf265da431d3ba6e3
它山之石可以攻玉。
useNativeDriver
is not supported because the native animated module is missinguseNativeDriver
is not supported because the native animated module is missinglibRCTAnimation.a
文件导入 react-native issues #11094<resources>
<string name="app_name">Your_app_name_to_displaystring>
resources>
wabg.apk
android{
applicationVariants.all { variant ->
variant.outputs.each { output ->
def outputFile = output.outputFile
if (outputFile != null && outputFile.name.endsWith('.apk')) {
File outputDirectory = new File(outputFile.parent);
def fileName
// 你的apk打包名称
if (variant.buildType.name == "release") {
fileName = "app_v${defaultConfig.versionName}_${releaseTime()}_${variant.productFlavors[0].name}.apk"
} else {
fileName = "app_v${defaultConfig.versionName}_${packageTime()}_debug.apk"
}
output.outputFile = new File(outputDirectory, fileName)
}
}
}
}