最近在学习Android开发,安装完Android Studio后,发现demo无法运行在虚拟机上,后来发现是配置文件的问题。

正确的配置文件(build.gradle):

// Top-level build file where you can add configuration options common to all sub-projects/modules.buildscript {    repositories {        //配置为阿里云,无法直接点击url访问,但不影响maven仓库的使用        maven{ url 'http://maven.aliyun.com/nexus/content/groups/public'}        google()        //google()        //jcenter()            }    dependencies {        classpath 'com.android.tools.build:gradle:3.5.1'                // NOTE: Do not place your application dependencies here; they belong        // in the individual module build.gradle files    }}allprojects {    repositories {        maven{ url 'http://maven.aliyun.com/nexus/content/groups/public'}        google()        //google()        //jcenter()            }}task clean(type: Delete) {    delete rootProject.buildDir}

正确的配置文件(gradle/wrapper/gradel-wrapper.properties):

#Thu Oct 03 11:36:29 CST 2019distributionBase=GRADLE_USER_HOMEdistributionPath=wrapper/distszipStoreBase=GRADLE_USER_HOMEzipStorePath=wrapper/distsdistributionUrl=https://services.gradle.org/distributions/gradle-5.4.1-all.zip 

然后点击gradle的编译按钮:

 

编译完毕:

选好安卓虚拟机的型号:

即可运行应用:

更多相关文章

  1. Android菜鸟的成长笔记——PreferenceFragment 与 自定义Prefere
  2. Android(安卓)SDK 1.0 电话号码的例子(Demo)
  3. android中使用svg图标
  4. 【Android】ScrollView内动态添加图片间距过大的问题
  5. android中ListView数据刷新时的同步方法
  6. Android显示SDCARD中的图片
  7. UE4填坑记之——Android打包报错
  8. Android(安卓)开发常用的网站
  9. Gradle上传aar到Maven

随机推荐

  1. VirtualAPK:滴滴 Android(安卓)插件化的实
  2. uniapp解决多条socket连接冲突问题
  3. Android(安卓)Coding 利器 之 掌握小技巧
  4. Android应用开发团体赛比赛说明
  5. Android(安卓)Studio 2.2新特性(Google 2
  6. eclipse迁移到Android(安卓)Studio 问题
  7. 如何删除Android手机系统APP
  8. Android(安卓)网络框架_常用的网络框架
  9. Android从源码的角度彻底理解事件分发机
  10. MVP在安卓(Android)整理