添加个人信息请求接口,分体机验证没问题

This commit is contained in:
tongchenfei
2020-06-04 16:54:56 +08:00
parent c99198206d
commit 1b07d1ba5c
4 changed files with 7 additions and 5 deletions

View File

@@ -182,6 +182,7 @@ dependencies {
implementation rootProject.ext.dependencies.modulemedia
} else {
launcherImplementation project(':main-extensions:mogo-module-main-launcher')
// launcherImplementation project(':modules:mogo-module-main')
independentImplementation project(':main-extensions:mogo-module-main-independent')
implementation project(':foudations:mogo-commons')
implementation project(':modules:mogo-module-common')

View File

@@ -14,9 +14,9 @@
tools:replace="android:label">
<!-- 高德地图 -->
<meta-data
tools:replace="android:value"
android:name="com.amap.api.v2.apikey"
android:value="40e2e7e773c7562b1f2b13699a93992c" />
android:value="a36b9f7b086fa3951bb35338a5a06dd3" />
</application>
<uses-permission android:name="android.permission.WAKE_LOCK" />

View File

@@ -14,15 +14,16 @@
android:supportsRtl="true"
android:theme="@style/AppTheme.App"
tools:replace="android:label">
<provide
<provider
android:name="com.mogo.module.navi.cp.AddressContentProvider"
android:authorities="com.zhidao.auto.personal.provider"
android:enabled="true"
android:exported="true" />
<!-- 高德地图 -->
<meta-data
tools:replace="android:value"
android:name="com.amap.api.v2.apikey"
android:value="a36b9f7b086fa3951bb35338a5a06dd3" />
android:value="40e2e7e773c7562b1f2b13699a93992c" />
</application>
</manifest>

View File

@@ -18,6 +18,6 @@ public class MainLauncherActivity extends MainActivity {
protected void onCreate(@Nullable Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
Logger.d(TAG, "MainLauncherActivity onCreate()");
ExtensionsConfig.setNeedRequestUserInfo(false);
ExtensionsConfig.setNeedRequestUserInfo(true);
}
}