当前位置:   article > 正文

Android studio19版导入包配置_androidstudio导入配置

androidstudio导入配置

    在导入包之后配置中由于版本与gradle不匹配,所以要进行四个文件的修改。 

导入

先点击导航栏File——>Open再在弹窗目录中选择要导入的包

注意!!!导入的路径要全部英文

由于不是全英文,所以解压到别的路径中去。 

配置中

由于没有修改文件配置报错

ERROR: Could not find method google() for arguments [init_32d5nvwasuhg6fwuhjcxsdq0u$_run_closure1$_closure2$_closure3$_closure5$_closure8@72c5612] on repository container.
 

先更改gradle版本

现在在文件mqradle-wrapper.properties(Gradle Version)中代码

  1. #Mon Dec 28 10:00:20 PST 2015
  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.4.1-all.zip

配置

出现错误,修改下一个文件build.gradle (Project: GeoLib s5),GeoLib s5是我导入的包名

在repositories中添加google()方法。

原先

  1. // Top-level build file where you can add configuration options common to all sub-projects/modules.
  2. buildscript {
  3. repositories {
  4. jcenter()
  5. }
  6. dependencies {
  7. classpath 'com.android.tools.build:gradle:2.1.0'
  8. }
  9. }
  10. allprojects {
  11. repositories {
  12. jcenter()
  13. }
  14. }

修改之后的代码:

  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.5.2'
  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. }

配置之后

在控制台出现 android:minSdkVersion="19"错误,需要注释掉。

最后文件build.gradle (Module: app)中更改

  1. apply plugin: 'com.android.application'
  2. android {
  3. compileSdkVersion 34
  4. buildToolsVersion "34.0.0"
  5. defaultConfig {
  6. applicationId "com.example.zyaz"
  7. minSdkVersion 15
  8. targetSdkVersion 34
  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-optimize.txt'), 'proguard-rules.pro'
  17. }
  18. }
  19. }
  20. dependencies {
  21. implementation fileTree(dir: 'libs', include: ['*.jar'])
  22. implementation 'androidx.appcompat:appcompat:1.0.2'
  23. implementation 'androidx.constraintlayout:constraintlayout:1.1.3'
  24. testImplementation 'junit:junit:4.12'
  25. androidTestImplementation 'androidx.test.ext:junit:1.1.0'
  26. androidTestImplementation 'androidx.test.espresso:espresso-core:3.1.1'
  27. implementation 'org.apache.httpcomponents:httpcore:4.4.4'
  28. }

最后配置成功

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

闽ICP备14008679号