I have a project that I already run in Android Studio.
After I've opened the project in Android Studio I got the message:
Migrate Project to Gradle?
This project does not use the Gradle build system. We recommend that you migrate to using the Gradle build system.
More Information about migrating to Gradle
Don't show this message again.
Following the link of More Information about migrating to Gradle although I'm already on Android Studio
I've followed the option Migrating from IntelliJ Projects .
Since I've already have a build.gradle
file at the root of my project I've modified to include some dependencies.
buildscript {
repositories {
mavenCentral()
}
dependencies {
classpath 'com.android.tools.build:gradle:0.7.+'
}
}
apply plugin: 'android'
dependencies {
compile fileTree(dir: 'libs', include: '*.jar')
compile "com.android.support:support-v4:18.0.+"
compile "com.android.support:appcompat-v7:18.0.+"
}
android {
compileSdkVersion 18
buildToolsVersion "18.0.1"
sourceSets {
main {
manifest.srcFile 'AndroidManifest.xml'
java.srcDirs = ['src']
resources.srcDirs = ['src']
aidl.srcDirs = ['src']
renderscript.srcDirs = ['src']
res.srcDirs = ['res']
assets.srcDirs = ['assets']
}
// Move the tests to tests/java, tests/res, etc...
instrumentTest.setRoot('tests')
// Move the build types to build-types/<type>
// For instance, build-types/debug/java, build-types/debug/AndroidManifest.xml, ...
// This moves them out of them default location under src/<type>/... which would
// conflict with src/ being used by the main source set.
// Adding new build types or product flavors should be accompanied
// by a similar customization.
debug.setRoot('build-types/debug')
release.setRoot('build-types/release')
}
}
As instructed, i've ran gradle assembleDebug
on the Android Studio
terminal windows but was getting some errors. To solve this errors I had to create a local.properties
with sdk.dir=C:\Program Files (x86)\Android\android-sdk
and remove the android-support-v4.jar
file from the /libs
folder and from the Libraries->libs
from the Project Structure
.
I now ran again gradle assembleDebug
and this time it finishes without any errors.
I've restarted Android Studio
but after restarting I've saw that on the External Libraries
of the project there were no support-v4
and appcompat-v7
and in one of my classes I have the import android.support.v4.widget.CursorAdapter;
marked as error since Cannot resolve symbol Cursor Adapter
.
If I press the button Sync project with gradle files
i got the message: The project MyProject is not a Gradle-based project
Can someone help me figuring out how to solve this?
Here is my project Structure
question from:
https://stackoverflow.com/questions/21606504/cant-migrate-project-to-gradle-in-android-studio 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…