程序类型已存在:com.github.paolorotolo.appintro.appintro

mqkwyuun  于 2021-07-05  发布在  Java
关注(0)|答案(0)|浏览(261)

//请帮帮我。我只添加了一次appintro依赖项,我不知道为什么会出现这个错误。//请帮助我。我只添加了一次appintro依赖项,我不知道为什么会出现这个错误。//请帮助我。我只添加了一次appintro依赖项,我不知道为什么会出现这个错误。

  1. buildscript {
  2. repositories {
  3. maven { url 'https://plugins.gradle.org/m2/' }
  4. }
  5. dependencies {
  6. classpath 'gradle.plugin.com.onesignal:onesignal-gradle-plugin:0.12.2'
  7. }
  8. }
  9. apply plugin: 'com.onesignal.androidsdk.onesignal-gradle-plugin'
  10. repositories {
  11. maven { url 'https://maven.google.com' }
  12. }
  13. apply plugin: 'com.android.application'
  14. android {
  15. aaptOptions {
  16. noCompress "webp"
  17. }
  18. compileSdkVersion 28
  19. buildToolsVersion "28.0.3"
  20. defaultConfig {
  21. applicationId "com.kilonova.stickersapp"
  22. minSdkVersion 19
  23. targetSdkVersion 28
  24. versionCode 25
  25. versionName '1.2.5'
  26. multiDexEnabled true
  27. testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
  28. def contentProviderAuthority = applicationId + ".WhatsAppLicensedCode.StickerContentProvider"
  29. // Creates a placeholder property to use in the manifest.
  30. manifestPlaceholders =
  31. [
  32. contentProviderAuthority : contentProviderAuthority,
  33. onesignal_app_id : 'ONE_SIGNAL_APP_ID',
  34. onesignal_google_project_number: 'REMOTE'
  35. ]
  36. // Adds a new field for the authority to the BuildConfig class.
  37. buildConfigField("String",
  38. "CONTENT_PROVIDER_AUTHORITY",
  39. "\"${contentProviderAuthority}\"")
  40. }
  41. buildTypes {
  42. release {
  43. minifyEnabled false
  44. proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
  45. debuggable false
  46. }
  47. debug {
  48. minifyEnabled false
  49. proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
  50. debuggable true
  51. }
  52. }
  53. configurations.all {
  54. resolutionStrategy {
  55. force 'androidx.media:media:1.0.0'
  56. // all*.exclude group: 'com.google.guava', module: 'listenablefuture'
  57. }
  58. }
  59. compileOptions {
  60. targetCompatibility JavaVersion.VERSION_1_8
  61. sourceCompatibility JavaVersion.VERSION_1_8
  62. }
  63. dataBinding {
  64. enabled = true
  65. }
  66. productFlavors {
  67. }
  68. }
  69. dependencies {
  70. implementation fileTree(include: ['*.jar'], dir: 'libs')
  71. //noinspection GradleCompatible
  72. implementation 'androidx.appcompat:appcompat:1.0.2'
  73. implementation 'androidx.constraintlayout:constraintlayout:1.1.3'
  74. implementation 'com.google.android.material:material:1.0.0'
  75. implementation 'androidx.legacy:legacy-support-core-utils:1.0.0'
  76. implementation 'androidx.recyclerview:recyclerview:1.0.0'
  77. implementation 'androidx.cardview:cardview:1.0.0'
  78. testImplementation 'junit:junit:4.13-beta-3'
  79. androidTestImplementation 'androidx.test:runner:1.2.0'
  80. androidTestImplementation 'androidx.test.espresso:espresso-core:3.2.0'
  81. implementation 'androidx.legacy:legacy-support-v4:1.0.0'
  82. implementation project(':photoeditor')
  83. implementation 'com.facebook.fresco:fresco:2.0.0'
  84. implementation 'com.facebook.fresco:webpsupport:2.0.0'
  85. implementation 'com.facebook.fresco:animated-webp:2.0.0'
  86. implementation 'com.facebook.fresco:webpsupport:2.0.0'
  87. implementation 'com.squareup.retrofit2:retrofit:2.4.0'
  88. implementation 'com.squareup.retrofit2:converter-gson:2.4.0'
  89. implementation 'com.squareup.okhttp3:logging-interceptor:3.9.1'
  90. implementation 'com.google.firebase:firebase-ads:18.1.1'
  91. implementation 'com.github.kk121:File-Loader:1.2'
  92. implementation 'com.nabinbhandari.android:permissions:3.8'
  93. implementation 'com.github.f0ris.sweetalert:library:1.6.2'
  94. implementation 'com.onesignal:OneSignal:3.11.1'
  95. implementation 'ja.burhanrashid52:photoeditor:0.3.3'
  96. implementation 'com.theartofdev.edmodo:android-image-cropper:2.4.+'
  97. implementation 'com.github.gabrielbb:cutout:0.1.2'
  98. implementation 'com.github.rubensousa:gravitysnaphelper-compat:2.0'
  99. implementation 'com.squareup.picasso:picasso:2.71828'
  100. implementation 'com.android.support:multidex:1.0.3'
  101. implementation 'com.anjlab.android.iab.v3:library:1.0.45'
  102. implementation 'com.alexvasilkov:gesture-views:2.6.0'
  103. implementation 'com.github.duanhong169:checkerboarddrawable:1.0.2'
  104. implementation 'com.github.jkwiecien:EasyImage:1.3.1'
  105. implementation 'com.github.AppIntro:AppIntro:4.2.3'
  106. implementation 'com.facebook.fresco:animated-base:2.0.0'
  107. }

暂无答案!

目前还没有任何答案,快来回答吧!

相关问题