我的基本Android应用程序一直在我的模拟器上崩溃。
这是我的build.gradle。
buildscript {
// use the jcenter repository to download the dependencies
repositories {
jcenter()
}
dependencies {
classpath 'com.android.tools.build:gradle:2.4.0-alpha6'
}
}
apply plugin: 'com.android.application'
android {
compileSdkVersion 24
buildToolsVersion "25.0.2"
}
这是我的AndroidManifest.xml
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="fun.n.games"
android:versionCode="1"
android:versionName="1.0.0" >
<application android:label="@string/app_name" >
<activity
android:name=".HelloActivity"
android:label="@string/app_name" >
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
</application>
</manifest>
这是我的HelloActivity
package fun.n.games;
import android.app.Activity;
import android.os.Bundle;
import android.widget.TextView;
public class HelloActivity extends Activity {
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.hello_layout);
}
@Override
public void onStart() {
super.onStart();
TextView textView = (TextView) findViewById(R.id.text_view);
textView.setText("Hello world!");
}
}
我试图在不使用AndroidStudio的情况下将这个东西放在一起。我在Sublime上将它们拼接在一起,然后使用命令行工具让它们显示在模拟器中。
我从命令行运行我的模拟器,就像这样。
emulator -avd Default
我使用gradle构建代码并将其部署到AVD上。
$ gradle installDebug
我的应用程序出现在模拟器中,但每当我点击它时,它就会崩溃。它找不到HelloActivity。
这是日志必须说的。
AndroidRuntime: java.lang.RuntimeException: Unable to instantiate activity ComponentInfo{fun.n.games/fun.n.games.HelloActivity}: java.lang.ClassNotFoundException: Didn't find class "fun.n.games.HelloActivity"
这是我正在运行它的AVD。
$ android list avd
Available Android Virtual Devices:
Name: Default
Path: /Users/me/.android/avd/Default.avd
Target: Android 7.0 (API level 24)
Tag/ABI: default/x86_64
Skin: WVGA800
有任何帮助吗?