eclipse to as guide

eclipse to as guide

File new project --import project select elipse

1. Lack of libs

Put libs under app, right click and add as library

Restart the ide or run sync under app/build.gradle

https://blog.csdn.net/petterp/article/details/84342945

2 Android APK path is not specified for module

Just restart the ide

3. There is a jar package under the release dist of the downloaded github , or directly download the csdn

4. gdk only supports

file->settings->Editor->File Encodings: Both IDE and Project Encoding are selected as gbk

Modify the Module's build.gradle file and add it in the android tag

android {

...

compileOptions {
    encoding "GBK"
}

}

After modification, remember to synchronize the project. There will be a prompt in the upper right corner of AS.

Guess you like

Origin blog.csdn.net/andeyeluguo/article/details/128699233