赞
踩
通常我们从GitHub或者从其他的官方网站down下来的demo是一个可运行的application,但是也通常会缺少了相关的构建工具和jar包仓库。此时我们如若通过AS工具或者idea工具导入之后运行则会抛出如下错误:
- Build file 'xxxx/build.gradle' line: 1
- A problem occurred evaluating root project 'Demo'.
- > Plugin with id 'com.android.application' not found.
如下:
- apply plugin: 'com.android.application'
-
- android {
- compileSdkVersion 23
- buildToolsVersion "25.0.2"
- defaultConfig {
- applicationId "com.example.demo"
- minSdkVersion 15
- targetSdkVersion 23
- versionCode 1
- versionName "1.0"
-
- // Specifies the ABI configurations of your native
- // libraries Gradle should build and package with your APK.
- ndk {
- abiFilters "armeabi", "armeabi-v7a", "x86", "mips"
- }
- }
- buildTypes {
- release {
- minifyEnabled false
- proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
- }
- }
-
- //android studio默认so文件加载目录为:src/main/jniLibs
- //如在module的build.gradle按照如下方式,自定义了so文件加载目录请确保对应目录下只有armeabi目录
- // sourceSets {
- // main{
- // jniLibs.srcDirs = ['libs']
- // }
- // }
- }
-
- dependencies {
- compile fileTree(include: ['*.jar'], dir: 'libs')
-
- compile 'com.android.support:appcompat-v7:23.4.0'
- //compile 'com.android.support.constraint:constraint-layout:1.0.0-alpha7'
- }
-
-
如若只有这个module的gradle文件,并且配置如上的话,我们build是会报错的;原因是确实了相关的构建配置:
解决方案:
1、在当前的gradle文件加上如下配置:
- buildscript {
- repositories {
- // You need to add the following repository to download the
- // new plugin.
- // google() // new which replace https://maven.google.com
- jcenter()
- google()
- }
- dependencies {
- classpath 'com.android.tools.build:gradle:3.0.0'
- }
- }
-
- allprojects {
- repositories {
- jcenter()
- google()
- }
- }
重新build即可。
2、通过as工具或者idea工具创建新的空项目,然后导入当前的module也是可行的。
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。