flutter配置高德地图SDK

在项目目录 android/app目录下build.gradle 文件内添加如下代码

android {  
    defaultConfig {
    
		manifestPlaceholders = [
                LOCATION_APP_KEY : "0e8507757da9b56d5d905edce9ccf2c0", /// 高德地图key
        ]
    }
    dependencies {
            //这里的插件可自行引入,都是云端的
    implementation 'com.amap.api:location:latest.integration'
    }




}

在src/main目录下androidMainfest.xml文件内添加如下权限

 

    
     
    
    
    
    
    
    
    
    
    
 

    

在application结尾处添加如下服务


        

插件开发还需在根目录的android目录中的build.XX文件内android {}添加以下代码

dependencies {
    implementation 'com.amap.api:location:latest.integration'
    }

 

你可能感兴趣的:(flutter配置高德地图SDK)