react-native run-android Starting: Intent Error type 3 Error: Activity class does not exist

來源:互聯網
上載者:User

標籤:react   main   系統   class   error:   pac   pre   conf   blog   

 

使用”react-native run-android”命令運行android應用時,如果常常出現如下錯誤: 
Starting the app (/home/xxx/soft/sdk//platform-tools/adb shell am start -n xxx/.MainActivity)… 
Starting: Intent { cmp=xxx/.MainActivity } 
Error type 3 
Error: Activity class {xxx/xxx.MainActivity} does not exist. 
儘管該應用可以安裝到你的安卓裝置, 不影響使用,但是看著好礙眼。本著不能規避問題的原則,還是要想辦法消掉這個錯誤。經過本人的一番嘗試,總算解決了這個礙眼的bug.在此記錄一下解決的步驟。 
1. 首先是檢查這個MainActivity.java是不是真的存在,且包名和路徑無誤; 
2. 如果檔案存在,且包名和路徑沒有問題,那麼就開啟你項目所在 的/android/app/build.gradle檔案,刪除defaultConfig下的applicationId,像下面這樣: 
apply plugin: ‘com.android.application’ 
android { 
compileSdkVersion xxx 
buildToolsVersion “xxx”

defaultConfig {

// applicationId “xxx” 
或者將applicationId的值改成manifest檔案裡指定的package。 
再運行”react-native run-android”,OK了。 
出現這個問題的原因是你的package和applicationId不一致。如果你沒有在你的 build.gradle 檔案中定義 applicationId,這個applicationId 將預設為 AndroidManifest.xml 中所指定的與package相同的值。 
注意:現在的Android Gradle編譯系統的android項目是以applicationId作為唯一標識應用的包名。

 

引用原文:http://blog.csdn.net/zhaoyingm/article/details/52180352

 

寫部落格是為了記住自己容易忘記的東西,另外也是對自己工作的總結,文章可以轉載,無需著作權。希望盡自己的努力,做到更好,大家一起努力進步!

如果有什麼問題,歡迎大家一起探討,代碼如有問題,歡迎各位大神指正!

react-native run-android Starting: Intent Error type 3 Error: Activity class does not exist

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.