Skip to content
项目
群组
代码片段
帮助
当前项目
正在载入...
登录 / 注册
切换导航面板
A
amap_flutter_map
项目
项目
详情
活动
周期分析
仓库
仓库
文件
提交
分支
标签
贡献者
图表
比较
统计图
议题
0
议题
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
CI / CD
CI / CD
流水线
作业
日程
统计图
Wiki
Wiki
代码片段
代码片段
成员
成员
折叠边栏
关闭边栏
活动
图像
聊天
创建新问题
作业
提交
问题看板
Open sidebar
openSourceLibrary
amap_flutter_map
Commits
4cc26110
提交
4cc26110
authored
1月 21, 2025
作者:
史晓晨
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
feat:调试Android地图展示(依赖环境,适配)
上级
ae2e7b48
隐藏空白字符变更
内嵌
并排
正在显示
4 个修改的文件
包含
28 行增加
和
26 行删除
+28
-26
build.gradle
example/android/app/build.gradle
+24
-23
AndroidManifest.xml
example/android/app/src/main/AndroidManifest.xml
+1
-0
build.gradle
example/android/build.gradle
+2
-2
gradle-wrapper.properties
example/android/gradle/wrapper/gradle-wrapper.properties
+1
-1
没有找到文件。
example/android/app/build.gradle
浏览文件 @
4cc26110
...
...
@@ -24,9 +24,9 @@ if (flutterVersionName == null) {
apply
plugin:
'com.android.application'
apply
from:
"$flutterRoot/packages/flutter_tools/gradle/flutter.gradle"
def
keystorePropertiesFile
=
rootProject
.
file
(
"app/key.properties"
)
def
keystoreProperties
=
new
Properties
()
keystoreProperties
.
load
(
new
FileInputStream
(
keystorePropertiesFile
))
//
def keystorePropertiesFile = rootProject.file("app/key.properties")
//
def keystoreProperties = new Properties()
//
keystoreProperties.load(new FileInputStream(keystorePropertiesFile))
android
{
compileSdkVersion
31
...
...
@@ -38,31 +38,31 @@ android {
defaultConfig
{
// TODO: Specify your own unique Application ID (https://developer.android.com/studio/build/application-id.html).
applicationId
"com.amap.flutter.test_map"
minSdkVersion
16
minSdkVersion
flutter
.
minSdkVersion
targetSdkVersion
31
versionCode
flutterVersionCode
.
toInteger
()
versionName
flutterVersionName
}
signingConfigs
{
release
{
//keystore中key的别名
keyAlias
keystoreProperties
[
'keyAlias'
]
//keystore中key的密码
keyPassword
keystoreProperties
[
'keyPassword'
]
//keystore的文件路径,可以是绝对路径也可以是相对路径
storeFile
file
(
keystoreProperties
[
'storeFile'
])
//keystore的密码l
storePassword
keystoreProperties
[
'storePassword'
]
}
}
//
signingConfigs {
//
release {
//
//keystore中key的别名
//
keyAlias keystoreProperties['keyAlias']
//
//keystore中key的密码
//
keyPassword keystoreProperties['keyPassword']
//
//keystore的文件路径,可以是绝对路径也可以是相对路径
//
storeFile file(keystoreProperties['storeFile'])
//
//keystore的密码l
//
storePassword keystoreProperties['storePassword']
//
}
//
}
buildTypes
{
debug
{
signingConfig
signingConfigs
.
release
}
release
{
// flutter build apk
signingConfig
signingConfigs
.
release
}
//
debug {
//
signingConfig signingConfigs.release
//
}
//
release {
//
// flutter build apk
//
signingConfig signingConfigs.release
//
}
}
sourceSets
{
main
{
...
...
@@ -73,6 +73,7 @@ android {
dependencies
{
//demo中引入高德地图SDK
implementation
'com.amap.api:3dmap:8.1.0'
implementation
'com.amap.api:search:8.1.0'
}
flutter
{
...
...
example/android/app/src/main/AndroidManifest.xml
浏览文件 @
4cc26110
...
...
@@ -22,6 +22,7 @@
android:value=
"6a158bd9bdede0d4276a7ab4fc45ca1b"
/>
<activity
android:name=
".MainActivity"
android:exported=
"true"
android:launchMode=
"singleTop"
android:theme=
"@style/LaunchTheme"
android:configChanges=
"orientation|keyboardHidden|keyboard|screenSize|smallestScreenSize|locale|layoutDirection|fontScale|screenLayout|density|uiMode"
...
...
example/android/build.gradle
浏览文件 @
4cc26110
...
...
@@ -5,7 +5,7 @@ buildscript {
}
dependencies
{
classpath
'com.android.tools.build:gradle:
3.5
.0'
classpath
'com.android.tools.build:gradle:
7.3
.0'
}
}
...
...
@@ -24,6 +24,6 @@ subprojects {
project
.
evaluationDependsOn
(
':app'
)
}
task
clean
(
type:
Delete
)
{
task
s
.
register
(
"clean"
,
Delete
)
{
delete
rootProject
.
buildDir
}
example/android/gradle/wrapper/gradle-wrapper.properties
浏览文件 @
4cc26110
...
...
@@ -3,4 +3,4 @@ distributionBase=GRADLE_USER_HOME
distributionPath
=
wrapper/dists
zipStoreBase
=
GRADLE_USER_HOME
zipStorePath
=
wrapper/dists
distributionUrl
=
https
\:
//services.gradle.org/distributions/gradle-
5.6.2
-all.zip
distributionUrl
=
https
\:
//services.gradle.org/distributions/gradle-
7.6.1
-all.zip
编写
预览
Markdown
格式
0%
重试
或
添加新文件
添加附件
取消
您添加了
0
人
到此讨论。请谨慎行事。
请先完成此评论的编辑!
取消
请
注册
或者
登录
后发表评论