地图
This commit is contained in:
parent
eff201284f
commit
ce065dfab9
5
App.tsx
5
App.tsx
|
@ -7,7 +7,12 @@ import Toast from 'react-native-toast-message';
|
|||
import { Platform } from 'react-native';
|
||||
import { AuthProvider, useAuth } from './src/context/AuthContext';
|
||||
import { setToastFunction, setLogoutFunction } from './src/utils/api';
|
||||
import { AMapSdk } from 'react-native-amap3d';
|
||||
|
||||
AMapSdk.init(Platform.select({
|
||||
android: '812efd3a950ba3675f928630302c6463',
|
||||
|
||||
}));
|
||||
const AppContent = () => {
|
||||
const { logout } = useAuth();
|
||||
|
||||
|
|
|
@ -87,6 +87,12 @@ android {
|
|||
versionName "1.0"
|
||||
}
|
||||
signingConfigs {
|
||||
release {
|
||||
storeFile file('my-release-key.jks')
|
||||
storePassword 'jq888786' // 替换为你的密钥库密码
|
||||
keyAlias 'my-key-alias' // 替换为你的密钥别名
|
||||
keyPassword 'jq888786' // 替换为你的密钥密码
|
||||
}
|
||||
debug {
|
||||
storeFile file('debug.keystore')
|
||||
storePassword 'android'
|
||||
|
@ -101,7 +107,7 @@ android {
|
|||
release {
|
||||
// Caution! In production, you need to generate your own keystore file.
|
||||
// see https://reactnative.dev/docs/signed-apk-android.
|
||||
signingConfig signingConfigs.debug
|
||||
signingConfig signingConfigs.release
|
||||
minifyEnabled enableProguardInReleaseBuilds
|
||||
proguardFiles getDefaultProguardFile("proguard-android.txt"), "proguard-rules.pro"
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue
Block a user