最近,我想在我的Android应用程序中实现flurry分析 但是,在我按照说明操作程序后,我遇到了下面显示的错误。
程序类型已存在:com.flurry.android.Consent
apply plugin: 'com.android.application'
android {
compileSdkVersion 26
defaultConfig {
applicationId "com.falcontech.falcontech"
minSdkVersion 14
targetSdkVersion 26
versionCode 1
versionName "1.0"
testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
}
buildTypes {
release {
minifyEnabled true
proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
}
}
}
dependencies
{
implementation fileTree(include: ['*.jar'], dir: 'libs')
implementation 'com.android.support:appcompat-v7:26.1.0'
implementation 'com.android.support.constraint:constraint-layout:1.0.2'
//implementation 'com.google.android.gms:play-services-plus:15.0.0'
//$
testImplementation 'junit:junit:4.12'
androidTestImplementation 'com.android.support.test:runner:1.0.1'
androidTestImplementation 'com.android.support.test.espresso:espresso-core:3.0.1'
implementation files('/Users/Frank/Desktop/Desktop/flurry_Android_sdk 2/Flurry-Analytics/flurryAnalytics_10.0.0.jar')
implementation 'com.google.android.gms:play-services-analytics:15.0.0'
}
// Top-level build file where you can add configuration options common to all sub-projects/modules.
buildscript {
repositories {
google()
jcenter()
}
dependencies {
classpath 'com.android.tools.build:gradle:3.1.1'
// Add this line
classpath 'com.google.gms:google-services:3.2.0'
// NOTE: Do not place your application dependencies here; they belong
// in the individual module build.gradle files
}
}
allprojects {
repositories {
google()
jcenter()
}
}
task clean(type: Delete) {
delete rootProject.buildDir
}
答案 0 :(得分:0)
您可以通过在主应用程序的Gradle配置文件中添加以下内容来进行集成:
repositories {
jcenter()
}
dependencies {
// Required for Flurry Analytics integration
compile 'com.flurry.android:analytics:10.0.0@aar'
}
删除您添加到Manifest文件和jar文件的权限,然后同步您的gradle文件。在您的应用程序类中,请确保包含以下内容:
import com.flurry.android.FlurryAgent;
import static android.util.Log.VERBOSE;
答案 1 :(得分:0)
您可能在错误的gradle文件中列出了依赖项。它们应该与您的jar包含在发布的原始代码中的位置相同。
此外,您还要将minSdkVersion更新为16,这是10.0.0中支持的最小值。