当前位置:   article > 正文

AS导入项目

as高版本怎么导apply plugin

# 本文首发于https://necydcy.me/ ,欢迎关注浏览。

安卓项目导入AS经常出现问题,做一个总结,grable版本尽量不要太低也不要太高

1 项目打开目录下的build.gradle

把其中的

  1. // Top-level build file where you can add configuration options common to all sub-projects/modules.
  2. buildscript {
  3. repositories {
  4. google()
  5. jcenter()
  6. }
  7. dependencies {
  8. classpath 'com.android.tools.build:gradle:3.4.1'
  9. // NOTE: Do not place your application dependencies here; they belong
  10. // in the individual module build.gradle files
  11. }
  12. }
  13. allprojects {
  14. repositories {
  15. google()
  16. jcenter()
  17. }
  18. }
  19. task clean(type: Delete) {
  20. delete rootProject.buildDir
  21. }

classpath 'ccom.android.tools.build:gradle:3.4.1'改成自己对应的AS的版本,在自己的其他项目中可以查看。

2 项目打开目录下的local.properties

sdk的路径设置成自己的

3 gradle\wrapper\gradle-wrapper.properties 文件

把这个文件的

  1. #Sat Jun 15 20:27:12 CST 2019
  2. distributionBase=GRADLE_USER_HOME
  3. distributionPath=wrapper/dists
  4. zipStoreBase=GRADLE_USER_HOME
  5. zipStorePath=wrapper/dists
  6. distributionUrl=https\://services.gradle.org/distributions/gradle-5.1.1-all.zip

distributionUrl的gradle的版本设置为AS的内置版本,同样可以在创建过的项目中查找。

4 app\build.gradle 文件

  1. apply plugin: 'com.android.application'
  2. android {
  3. compileSdkVersion 29
  4. buildToolsVersion "29.0.0"
  5. defaultConfig {
  6. applicationId "com.example.dell.link_game"
  7. minSdkVersion 22
  8. targetSdkVersion 29
  9. versionCode 1
  10. versionName "1.0"
  11. testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
  12. }
  13. buildTypes {
  14. release {
  15. minifyEnabled false
  16. proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
  17. }
  18. }
  19. }
  20. dependencies {
  21. implementation fileTree(dir: 'libs', include: ['*.jar'])
  22. implementation 'com.android.support:appcompat-v7:28.0.0'
  23. implementation 'com.android.support.constraint:constraint-layout:1.1.3'
  24. implementation "com.android.support:support-v4:28.0.0"
  25. implementation 'com.android.support:design:28.0.0'
  26. testImplementation 'junit:junit:4.12'
  27. androidTestImplementation 'com.android.support.test:runner:1.0.2'
  28. androidTestImplementation 'com.android.support.test.espresso:espresso-core:3.0.2'
  29. }

修改compileSdkVersion 29和 buildToolsVersion "29.0.0",修改为自己对应的版本,分别为sdk版本和buildTools的版本。

AS进行导入,As的导入功能在新建项里面。

祝成功,剩下的问题就靠AS自动解决,如果解决不了,尝试使用新版本的AS

转载于:https://www.cnblogs.com/miria-486/p/11029521.html

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/正经夜光杯/article/detail/868656
推荐阅读
相关标签
  

闽ICP备14008679号