ดังนั้นฉันเป็นผู้เริ่มต้นใน Android และ Java ฉันเพิ่งเริ่มเรียนรู้ ขณะที่ฉันทดลองกับเจตนาในวันนี้ฉันเกิดข้อผิดพลาด
Error:Execution failed for task ':app:processDebugManifest'.
> Manifest merger failed with multiple errors, see logs
ฉันพบวิธีแก้ไขปัญหาบางอย่างที่นี่และพยายามนำไปใช้ แต่ไม่ได้ผล
นี่คือ 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'
}
นี่คือ 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>
นี่เป็นสัปดาห์แรกของฉันที่มีการเขียนโค้ดฉันขอโทษถ้านี่เป็นสิ่งที่โง่จริงๆ ฉันใหม่จริง ๆ นี้และไม่พบที่อื่นที่จะถาม ขออภัยถ้าฉันทำผิดกฎ