Ich bin ein Anfänger in Android und Java. Ich habe gerade angefangen zu lernen. Während ich heute mit Intent experimentierte , ist ein Fehler aufgetreten.
Error:Execution failed for task ':app:processDebugManifest'.
> Manifest merger failed with multiple errors, see logs
Ich habe hier einige Lösungen gefunden und versucht, sie zu implementieren, aber es hat nicht funktioniert.
Das ist mein build.gradle:
apply plugin: 'com.android.application'
android {
compileSdkVersion 23
buildToolsVersion "23.0.0"
defaultConfig {
applicationId "com.example.rohan.petadoptionthing"
minSdkVersion 10
targetSdkVersion 23
versionCode 1
versionName "1.0"
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}
}
dependencies {
compile fileTree(dir: 'libs', include: ['*.jar'])
compile 'com.android.support:appcompat-v7:23.0.0'
}
Dies ist mein AndroidManifest:
<?xml version="1.0" encoding="utf-8"?>
package="com.example.rohan.petadoptionthing" >
<application
android:allowBackup="true"
android:icon="@mipmap/ic_launcher"
android:label="@string/app_name"
android:theme="@style/AppTheme" >
<activity
android:name=".MainActivity"
android:label="@string/app_name" >
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
<activity android:name=".Second"
/>
<activity android:name=".third"/>
<activity android:name=".MainActivity"/>
</application>
Dies ist meine erste Woche mit Codierung. Es tut mir leid, wenn dies eine wirklich dumme Sache ist. Ich bin wirklich neu in diesem Bereich und habe keinen anderen Ort gefunden, an dem ich fragen könnte. Entschuldigung, wenn ich gegen Regeln verstoßen habe