Eclipseを使用してAndroid仮想アプリケーションで完全に動作するAndroidアプリケーションを開発しました。または、Eclipse + USBデバッグモードを有効にしてスマートフォンで実行しています。Androidアプリケーションがデバイスで起動しない
しかし、SDカードにある署名付きapkファイルを使用してアプリケーションを携帯電話にインストールして起動しようとすると、「アクティビティが見つかりません - lsp.workshop」というエラーが発生し、 start(lsp.workshopはアプリケーションパッケージ名です)。
AndroidManifest.xmlファイルには、次のとおりです。
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="lsp.workshop"
android:versionCode="1"
android:versionName="1.0" >
<uses-sdk android:minSdkVersion="7" />
<uses-permission android:name="android.permission.INTERNET" />
<application
android:icon="@drawable/ic_launcher"
android:label="@string/app_name" >
<activity
android:name=".TwitterLogin"
android:label="@string/app_name" android:launchMode="singleTask">
<intent-filter>
<action android:name="android.intent.action.VIEW" />
<category android:name="android.intent.category.DEFAULT" />
<category android:name="android.intent.category.BROWSABLE" />
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
<data android:scheme="twitter" />
<data android:host="log" />
</intent-filter>
</activity>
</application>
</manifest>
私が間違って何をしているのですか?ありがとう
多分私は何かが不足しています。なぜそれはsomething.apkという名前ではありませんか? –
lsp.workshopは実際にsomtething.apkであるapkファイルの名前ではなく、自分のソースファイルを含むパッケージ(srcフォルダの下のディレクトリ)です – Killawatt
ああ。 「アクティビティが見つかりません」と表示されているので、あなたは本当にあなたが持っていますか? –