LoginSignup
1
1

More than 5 years have passed since last update.

Androidビルド時に "Error type 3 Error: Activity class { 【Activity名】 } does not exist." と出る。

Posted at

Androidでビルドしたらエラー出てできなかった。
エラーの内容は以下の通り。

Error type 3
Error: Activity class { 【Activity名】 } does not exist.

この時に、「Edit Configurations」を表示すると、画像の下部のような
「The module cannot be Android library」というエラーが出ていた。

Screen Shot 2015-10-29 at 6.51.53 AM.png

「 module...? 」ってことは、build.gradleかな? ってことで、
build.gradleを確認すると、一行目に

apply plugin: 'com.android.library'
//apply plugin: 'com.android.application'

ごちゃごちゃしてて、applicationってことになっていなかった(?)ぽい。
これを下記のように修正

//apply plugin: 'com.android.library'
apply plugin: 'com.android.application'

で、ビルドしたらでけた!

やったね!

1
1
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
1
1