実現したいこと
以下のurlのようにカルーセルを作成しようと考えていますが、エラーが出てきてしまい実行できません。
※画像はそちらで用意してください
参考動画
https://www.youtube.com/watch?v=unjG9xR-O9k
Caused by: java.lang.RuntimeException: Manifest merger failed with multiple errors, see logs
該当のソースコード
AndroidManifest.xml
1<?xml version="1.0" encoding="utf-8"?> 2<manifest xmlns:android="http://schemas.android.com/apk/res/android" 3 xmlns:tools="http://schemas.android.com/tools"> 4 5 <uses-permission android:name="android.permission.INTERNET"/> 6 7 <application 8 android:allowBackup="true" 9 android:dataExtractionRules="@xml/data_extraction_rules" 10 android:fullBackupContent="@xml/backup_rules" 11 android:icon="@mipmap/ic_launcher" 12 android:label="@string/app_name" 13 android:roundIcon="@mipmap/ic_launcher_round" 14 android:supportsRtl="true" 15 android:theme="@style/Theme.GridLayoutSample" 16 tools:targetApi="31"> 17 <activity 18 android:name=".MainActivity" 19 android:exported="true"> 20 <intent-filter> 21 <action android:name="android.intent.action.MAIN" /> 22 23 <category android:name="android.intent.category.LAUNCHER" /> 24 </intent-filter> 25 </activity> 26 </application> 27 28</manifest>
build.gradle
1plugins { 2 id 'com.android.application' 3} 4 5android { 6 namespace 'local.hal.st42.android.gridlayoutsample' 7 compileSdk 33 8 9 defaultConfig { 10 applicationId "local.hal.st42.android.gridlayoutsample" 11 minSdk 24 12 targetSdk 33 13 versionCode 1 14 versionName "1.0" 15 16 testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner" 17 } 18 19 buildTypes { 20 release { 21 minifyEnabled false 22 proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro' 23 } 24 } 25 compileOptions { 26 sourceCompatibility JavaVersion.VERSION_1_8 27 targetCompatibility JavaVersion.VERSION_1_8 28 } 29} 30 31dependencies { 32 33 implementation 'androidx.appcompat:appcompat:1.6.1' 34 implementation 'com.google.android.material:material:1.5.0' 35 implementation 'androidx.constraintlayout:constraintlayout:2.1.4' 36 testImplementation 'junit:junit:4.13.2' 37 androidTestImplementation 'androidx.test.ext:junit:1.1.5' 38 androidTestImplementation 'androidx.test.espresso:espresso-core:3.5.1' 39 40 implementation 'com.github.denzcoskun:ImageSlideShow:0.0.6' 41 42}
settings.gradle
1pluginManagement { 2 repositories { 3 google() 4 mavenCentral() 5 gradlePluginPortal() 6 } 7} 8dependencyResolutionManagement { 9 repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS) 10 repositories { 11 google() 12 mavenCentral() 13 maven { url 'https://jitpack.io'} 14 } 15} 16rootProject.name = "gridLayoutSample" 17include ':app' 18
activity_main
1<?xml version="1.0" encoding="utf-8"?> 2<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android" 3 xmlns:app="http://schemas.android.com/apk/res-auto" 4 xmlns:tools="http://schemas.android.com/tools" 5 android:layout_width="match_parent" 6 android:layout_height="match_parent" 7 tools:context=".MainActivity"> 8 9 <com.denzcoskun.imageslider.ImageSlider 10 android:layout_width="match_parent" 11 android:layout_height="200dp" 12 app:auto_cycle="true" 13 app:delay="0" 14 app:period="3000" 15 app:placeholder="@color/black" 16 app:error_image="@color/black" 17 android:id="@+id/slider" 18 app:corner_radius="20" 19 android:layout_margin="20dp" 20 /> 21 22</RelativeLayout>
MainActivity
1import androidx.appcompat.app.AppCompatActivity; 2 3import android.app.slice.SliceManager; 4import android.os.Bundle; 5import android.widget.GridView; 6 7import com.denzcoskun.imageslider.ImageSlider; 8import com.denzcoskun.imageslider.models.SlideModel; 9 10import java.util.ArrayList; 11import java.util.List; 12 13public class MainActivity extends AppCompatActivity { 14 15 @Override 16 protected void onCreate(Bundle savedInstanceState) { 17 super.onCreate(savedInstanceState); 18 setContentView(R.layout.activity_main); 19 20 ImageSlider imageSlider = findViewById(R.id.slider); 21 22 List<SlideModel> slideModels = new ArrayList<>(); 23 24 slideModels.add(new SlideModel(R.drawable.store)); 25 slideModels.add(new SlideModel("https://picsum.photos/id/237/200/300")); 26 slideModels.add(new SlideModel("https://picsum.photos/seed/picsum/200/300")); 27 slideModels.add(new SlideModel("https://picsum.photos/200/300?grayscale")); 28 slideModels.add(new SlideModel("https://picsum.photos/200/300/?blur")); 29 30 imageSlider.setImageList(slideModels, true); 31 } 32}
試したこと
原因を探りました。そしてbuild.gradleにあることがわかりました。
バージョンとか形式があっていないのかと思い、以下のサイトによりいろいろ試したのですがダメでした。
https://mvnrepository.com/artifact/com.github.denzcoskun/ImageSlideshow/0.0.6
implementation 'com.github.denzcoskun:ImageSlideShow:0.0.6'
は今現在使えないのでしょうか
回答1件
あなたの回答
tips
プレビュー