解决的问题
在Ubuntu里,编译aosp成功,在win10的Android Studio中查看
环境
- win10
- wsl:Ubuntu 1804
- Android 10 源码
步骤记录
依据 development/tools/idegen/README文件
1. 配置Android Studio
Android is large, thus IDEA needs a lot of memory. Add “-Xms1g -Xmx5g” to
your VM options in “Help > Edit Custom VM” and increase the
file size limit in “Help -> Edit custom properties” by adding
“idea.max.intellisense.filesize=100000”. Make sure to restart the IDE for
the new settings to take effect.
1.1 Android很大,你忍一下。 IDEA需要更多内存。
Help -> Edit custom VM
增加:
-Xms1g -Xmx5g
1.2 修改文件大小限制
Help -> Edit custom properties
增加:
idea.max.intellisense.filesize=100000
1.3 重启Android Studio
2. 生成android.ipr
2.1 idegen
假如已经make过了:
1.source /build/envsetup.sh
2. lunch 27
3. mmm development/tools/idegen
4. sudo ./development/tools/idegen/idegen.sh
2.2 打开android.ipr
在根目录下找到android.ipr, 使用Android Studio打开。