Skip to content
项目
群组
代码片段
帮助
当前项目
正在载入...
登录 / 注册
切换导航面板
M
manager-app-sz
项目
项目
详情
活动
周期分析
仓库
仓库
文件
提交
分支
标签
贡献者
图表
比较
统计图
议题
0
议题
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
CI / CD
CI / CD
流水线
作业
日程
统计图
Wiki
Wiki
代码片段
代码片段
成员
成员
折叠边栏
关闭边栏
活动
图像
聊天
创建新问题
作业
提交
问题看板
Open sidebar
ReactNative
manager-app-sz
Commits
a9b64acd
提交
a9b64acd
authored
11月 09, 2017
作者:
vipcxj
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
add: 热更新支持
上级
95015694
全部展开
隐藏空白字符变更
内嵌
并排
正在显示
8 个修改的文件
包含
33 行增加
和
2 行删除
+33
-2
app.iml
android/app/app.iml
+0
-0
build.gradle
android/app/build.gradle
+19
-0
index.android.bundle
android/app/src/main/assets/index.android.bundle
+0
-0
index.android.bundle.meta
android/app/src/main/assets/index.android.bundle.meta
+2
-0
MainApplication.java
...pp/src/main/java/com/bolanmanagerapp/MainApplication.java
+1
-1
gradle.properties
android/gradle.properties
+3
-1
local.properties
android/local.properties
+2
-0
router.js
src/router.js
+6
-0
没有找到文件。
android/app/app.iml
浏览文件 @
a9b64acd
差异被折叠。
点击展开。
android/app/build.gradle
浏览文件 @
a9b64acd
...
...
@@ -94,6 +94,8 @@ def enableSeparateBuildPerCPUArchitecture = false
*/
def
enableProguardInReleaseBuilds
=
false
Properties
properties
=
new
Properties
()
properties
.
load
(
project
.
rootProject
.
file
(
'local.properties'
).
newDataInputStream
())
android
{
compileSdkVersion
25
buildToolsVersion
"25.0.3"
...
...
@@ -109,6 +111,23 @@ android {
abiFilters
"armeabi-v7a"
,
"x86"
}
}
productFlavors
{
dev
{
minSdkVersion
21
}
prod
{
minSdkVersion
16
}
}
dexOptions
{
javaMaxHeapSize
"2G"
}
releaseStaging
{
buildConfigField
"String"
,
"CODEPUSH_KEY"
,
'"'
+
properties
.
getProperty
(
"code_push.key_staging"
)
+
'"'
}
release
{
buildConfigField
"String"
,
"CODEPUSH_KEY"
,
'"'
+
properties
.
getProperty
(
"code_push.key_production"
)
+
'"'
}
signingConfigs
{
release
{
storeFile
file
(
"app.jks"
)
...
...
android/app/src/main/assets/index.android.bundle
0 → 100644
浏览文件 @
a9b64acd
差异被折叠。
点击展开。
android/app/src/main/assets/index.android.bundle.meta
0 → 100644
浏览文件 @
a9b64acd
D4OD3'd9
\ No newline at end of file
android/app/src/main/java/com/bolanmanagerapp/MainApplication.java
浏览文件 @
a9b64acd
...
...
@@ -34,7 +34,7 @@ public class MainApplication extends Application implements ReactApplication {
protected
List
<
ReactPackage
>
getPackages
()
{
return
Arrays
.<
ReactPackage
>
asList
(
new
MainReactPackage
(),
new
CodePush
(
null
,
getApplicationContext
(),
BuildConfig
.
DEBUG
),
new
CodePush
(
BuildConfig
.
CODEPUSH_KEY
,
getApplicationContext
(),
BuildConfig
.
DEBUG
),
new
RNDeviceInfo
(),
new
IDCardReactPackage
()
);
...
...
android/gradle.properties
浏览文件 @
a9b64acd
...
...
@@ -18,4 +18,6 @@
# org.gradle.parallel=true
android.useDeprecatedNdk
=
true
org.gradle.jvmargs
=
-Xmx4G
org.gradle.daemon
=
true
org.gradle.parallel
=
true
org.gradle.jvmargs
=
-Xmx3G
android/local.properties
浏览文件 @
a9b64acd
...
...
@@ -9,3 +9,5 @@
# header note.
#Wed Sep 27 15:26:11 CST 2017
sdk.dir
=
/Users/yaohx_169/Library/Android/sdk
code_push.key_production
=
1jJDUki8dREADfZnMQWgjrk02K1Q4ksvOXqog
code_push.key_staging
=
09Bbn7Y3d8WBtouy9x5JxTjVvZgI4ksvOXqog
src/router.js
浏览文件 @
a9b64acd
...
...
@@ -2,6 +2,7 @@ import React, { PureComponent } from 'react';
import
{
BackHandler
,
Animated
,
Easing
}
from
'react-native'
;
import
{
StackNavigator
,
addNavigationHelpers
,
NavigationActions
}
from
'react-navigation'
;
import
{
connect
}
from
'react-redux'
;
import
codePush
from
'react-native-code-push'
;
import
NavigatorService
from
'./services/navigator'
;
import
Welcome
from
'./routes/welcome'
;
import
Error
from
'./routes/error'
;
...
...
@@ -66,6 +67,11 @@ class Router extends PureComponent {
BackHandler
.
addEventListener
(
'hardwareBackPress'
,
this
.
backHandle
);
}
componentDidMount
()
{
codePush
.
sync
();
}
componentWillUnmount
()
{
BackHandler
.
removeEventListener
(
'hardwareBackPress'
,
this
.
backHandle
);
}
...
...
编写
预览
Markdown
格式
0%
重试
或
添加新文件
添加附件
取消
您添加了
0
人
到此讨论。请谨慎行事。
请先完成此评论的编辑!
取消
请
注册
或者
登录
后发表评论