常见的操作

1.查看手机CPU型号

  • adb shell
  • cd /proc
  • cat cpuinfo

1.Modle关联错误


  • Error:Execution failed for task ‘:app:processDebugManifest’.

Manifest merger failed : Attribute meta-data#android.support.VERSION@value value=(25.3.1) from [com.android.support:support-compat:25.3.1] AndroidManifest.xml:27:9-31
is also present at [com.android.support:design:25.3.0] AndroidManifest.xml:27:9-31 value=(25.3.0).
Suggestion: add ‘tools:replace=”android:value”’ to element at AndroidManifest.xml:25:5-27:34 to override.

  • 出错原因是主APP和Modle里面的support 版本不一致,改成一直即可;
  • 错误截图:
    常见的操作_第1张图片
  • 你可能感兴趣的:(Android)