步骤
- 在android studio 中,file -- new -- import module -- 选择目标项目的位置 -- next -- next --finish 即可
遇到的问题
- 问题一:
Error:Execution failed for task ':digitalNote:processDebugManifest'.
> Manifest merger failed with multiple errors, see logs
解决办法: 由于该module依赖了另外的module,所以倒导入其中一个的时候,会自动导入依赖module。 然后不同的依赖间,最小的sdk版本不同,会出现上述该问题。 统一修改,即可。
http://stackoverflow.com/questions/35842955/manifest-merger-failed-with-multiple-errors-in-android-studio
- 问题二:
Error:Execution failed for task ':digitalNote:processDebugManifest'.
> Manifest merger failed : Attribute application@theme value=(@style/CustomActivityTheme) from AndroidManifest.xml:18:9-51
is also present at [penddo_test:digitalNoteAPI:unspecified] AndroidManifest.xml:19:9-40 value=(@style/AppTheme).
Suggestion: add 'tools:replace="android:theme"' to <application> element at AndroidManifest.xml:14:5-38:19 to override.
解决办法:根据报错提示可知,修改sdk版本后,导致主题不匹配。修改application中主题即可。
网友评论