解决Android Studio 错误方法

Posted 百小僧

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了解决Android Studio 错误方法相关的知识,希望对你有一定的参考价值。

https://blog.csdn.net/lang523493505/article/details/82914253

https://blog.csdn.net/qq_23599965/article/details/80910202

 

// Top-level build file where you can add configuration options common to all sub-projects/modules.

buildscript {

    repositories {
        google()
        jcenter()
        maven{ url ‘http://maven.aliyun.com/nexus/content/groups/public/‘}
    }
    dependencies {
        classpath ‘com.android.tools.build:gradle:3.2.1‘


        // NOTE: Do not place your application dependencies here; they belong
        // in the individual module build.gradle files
    }
}

allprojects {
    repositories {
        jcenter()
        maven{ url ‘http://maven.aliyun.com/nexus/content/groups/public/‘}
        maven { url "https://jitpack.io" }
        google()
    }
}

task clean(type: Delete) {
    delete rootProject.buildDir
}

  

以上是关于解决Android Studio 错误方法的主要内容,如果未能解决你的问题,请参考以下文章

Android课程---Android Studio使用小技巧:提取方法代码片段

Android Studio - 如何从片段中停止 handler.postDelayed?

在android studio中升级repo v9后,片段必须是公共静态类崩溃错误

片段中的TextView在Android Studio中返回Null

logcat错误android studio编程片段

片段中的Android Studio RecyclerView [重复]