Skip to content
项目
群组
代码片段
帮助
当前项目
正在载入...
登录 / 注册
切换导航面板
M
manager-app-sz
项目
项目
详情
活动
周期分析
仓库
仓库
文件
提交
分支
标签
贡献者
图表
比较
统计图
议题
0
议题
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
CI / CD
CI / CD
流水线
作业
日程
统计图
Wiki
Wiki
代码片段
代码片段
成员
成员
折叠边栏
关闭边栏
活动
图像
聊天
创建新问题
作业
提交
问题看板
Open sidebar
ReactNative
manager-app-sz
Commits
6a09b896
提交
6a09b896
authored
1月 18, 2019
作者:
吴强
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
对某些依赖等进行了升级
上级
0d9e986a
全部展开
隐藏空白字符变更
内嵌
并排
正在显示
6 个修改的文件
包含
84 行增加
和
75 行删除
+84
-75
build.gradle
android/app/build.gradle
+1
-1
AndroidManifest.xml
android/app/src/main/AndroidManifest.xml
+44
-37
build.gradle
android/build.gradle
+33
-32
gradle-wrapper.properties
android/gradle/wrapper/gradle-wrapper.properties
+6
-5
package-lock.json
package-lock.json
+0
-0
http-helper.js
src/utils/http-helper.js
+0
-0
没有找到文件。
android/app/build.gradle
浏览文件 @
6a09b896
...
...
@@ -170,7 +170,7 @@ dependencies {
compile
project
(
':react-native-code-push'
)
compile
project
(
':react-native-device-info'
)
compile
fileTree
(
dir:
"libs"
,
include:
[
"*.jar"
])
compile
"com.android.support:appcompat-v7:25.4.0"
compile
'com.android.support:appcompat-v7:25.4.0'
compile
'com.android.support:multidex:1.0.1'
compile
"com.facebook.react:react-native:+"
// From node_modules
compile
project
(
':react-native-vector-icons'
)
// 2017-10-31 wq add
...
...
android/app/src/main/AndroidManifest.xml
浏览文件 @
6a09b896
<manifest
xmlns:android=
"http://schemas.android.com/apk/res/android"
package=
"com.bolanmanagerapp"
android:versionCode=
"1"
android:versionName=
"1.0"
>
<uses-permission
android:name=
"android.permission.INTERNET"
/>
<uses-permission
android:name=
"android.permission.SYSTEM_ALERT_WINDOW"
/>
<uses-permission
android:name=
"android.permission.BLUETOOTH"
/>
<uses-permission
android:name=
"android.permission.READ_PHONE_STATE"
/>
<uses-permission
android:name=
"android.permission.RECORD_AUDIO"
/>
<uses-permission
android:name=
"android.permission.READ_EXTERNAL_STORAGE"
/>
<uses-permission
android:name=
"android.permission.WRITE_EXTERNAL_STORAGE"
/>
<uses-sdk
android:minSdkVersion=
"16"
android:targetSdkVersion=
"22"
/>
<application
android:name=
".MainApplication"
android:allowBackup=
"true"
android:label=
"@string/app_name"
android:icon=
"@mipmap/ic_launcher"
android:theme=
"@style/AppTheme"
>
<activity
android:name=
".MainActivity"
android:label=
"@string/app_name"
android:configChanges=
"keyboard|keyboardHidden|orientation|screenSize"
android:windowSoftInputMode=
"adjustResize"
>
<intent-filter>
<action
android:name=
"android.intent.action.MAIN"
/>
<category
android:name=
"android.intent.category.LAUNCHER"
/>
</intent-filter>
</activity>
<activity
android:name=
"com.facebook.react.devsupport.DevSettingsActivity"
/>
</application>
</manifest>
<manifest
xmlns:android=
"http://schemas.android.com/apk/res/android"
xmlns:tools =
"http://schemas.android.com/tools"
package=
"com.bolanmanagerapp"
android:versionCode=
"1"
android:versionName=
"1.0"
>
<uses-permission
android:name=
"android.permission.INTERNET"
/>
<uses-permission
android:name=
"android.permission.SYSTEM_ALERT_WINDOW"
/>
<uses-permission
android:name=
"android.permission.BLUETOOTH"
/>
<uses-permission
android:name=
"android.permission.READ_PHONE_STATE"
/>
<uses-permission
android:name=
"android.permission.RECORD_AUDIO"
/>
<uses-permission
android:name=
"android.permission.READ_EXTERNAL_STORAGE"
/>
<uses-permission
android:name=
"android.permission.WRITE_EXTERNAL_STORAGE"
/>
<uses-sdk
android:targetSdkVersion=
"22"
/>
<application
android:name=
".MainApplication"
android:allowBackup=
"true"
android:label=
"@string/app_name"
android:icon=
"@mipmap/ic_launcher"
android:theme=
"@style/AppTheme"
>
<meta-data
tools:replace=
"android:value"
android:name=
"android.support.VERSION"
android:value=
"26.1.0"
/>
<activity
android:name=
".MainActivity"
android:label=
"@string/app_name"
android:configChanges=
"keyboard|keyboardHidden|orientation|screenSize"
android:windowSoftInputMode=
"adjustResize"
>
<intent-filter>
<action
android:name=
"android.intent.action.MAIN"
/>
<category
android:name=
"android.intent.category.LAUNCHER"
/>
</intent-filter>
</activity>
<activity
android:name=
"com.facebook.react.devsupport.DevSettingsActivity"
/>
</application>
</manifest>
android/build.gradle
浏览文件 @
6a09b896
// Top-level build file where you can add configuration options common to all sub-projects/modules.
buildscript
{
repositories
{
jcenter
()
maven
{
url
'https://maven.google.com/'
name
'Google'
}
}
dependencies
{
classpath
'com.android.tools.build:gradle:2.3.3'
// NOTE: Do not place your application dependencies here; they belong
// in the individual module build.gradle files
}
}
allprojects
{
repositories
{
mavenLocal
()
jcenter
()
maven
{
// All of React Native (JS, Obj-C sources, Android binaries) is installed from npm
url
"$rootDir/../node_modules/react-native/android"
}
maven
{
url
'https://maven.google.com/'
name
'Google'
}
}
}
// Top-level build file where you can add configuration options common to all sub-projects/modules.
buildscript
{
repositories
{
jcenter
()
maven
{
url
'https://maven.google.com/'
name
'Google'
}
google
()
}
dependencies
{
classpath
'com.android.tools.build:gradle:3.3.0'
// NOTE: Do not place your application dependencies here; they belong
// in the individual module build.gradle files
}
}
allprojects
{
repositories
{
mavenLocal
()
jcenter
()
maven
{
// All of React Native (JS, Obj-C sources, Android binaries) is installed from npm
url
"$rootDir/../node_modules/react-native/android"
}
maven
{
url
'https://maven.google.com/'
name
'Google'
}
}
}
android/gradle/wrapper/gradle-wrapper.properties
浏览文件 @
6a09b896
distributionBase
=
GRADLE_USER_HOME
distributionPath
=
wrapper/dists
zipStoreBase
=
GRADLE_USER_HOME
zipStorePath
=
wrapper/dists
distributionUrl
=
https
\:
//services.gradle.org/distributions/gradle-3.3-all.zip
#Fri Jan 18 11:39:12 CST 2019
distributionBase
=
GRADLE_USER_HOME
distributionPath
=
wrapper/dists
zipStoreBase
=
GRADLE_USER_HOME
zipStorePath
=
wrapper/dists
distributionUrl
=
https
\:
//services.gradle.org/distributions/gradle-4.10.1-all.zip
package-lock.json
浏览文件 @
6a09b896
This source diff could not be displayed because it is too large. You can
view the blob
instead.
src/utils/http-helper.js
浏览文件 @
6a09b896
差异被折叠。
点击展开。
编写
预览
Markdown
格式
0%
重试
或
添加新文件
添加附件
取消
您添加了
0
人
到此讨论。请谨慎行事。
请先完成此评论的编辑!
取消
请
注册
或者
登录
后发表评论