我正在我的应用程序中集成“Strip”付款方式但是当我添加条带依赖编译'com.stripe:stripe-android:1.0.3'时也尝试编译'com.stripe:stripe-android:+'an发生错误
我看到很多关于领域Re-linker的答案,比如使用
编译'com.getkeepsafe.relinker:relinker:1.2.1' 编译'io.reactivex:rxjava:1.1.0'但问题仍然存在 这是我的Realm应用程序类
public class WifiExploreApplication extends Application {
@Override
public void onCreate(){
super.onCreate();
RealmConfiguration realmConfiguration = new RealmConfiguration.Builder(this)
.name("com.holygon.zaingz.alu").build();
Realm.setDefaultConfiguration(realmConfiguration)
}
}
这是我的傻瓜
apply plugin: 'com.android.application'
android {
compileSdkVersion 'Google Apis:Google Apis:23'
buildToolsVersion "23.0.2"
defaultConfig {
applicationId "com.example.wifiexplorer"
minSdkVersion 19
targetSdkVersion 23
versionCode 1
multiDexEnabled true
versionName "1.0"
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}
productFlavors {
}
}
repositories {
maven { url "https://jitpack.io" }
}
dependencies {
compile fileTree(dir: 'libs', include: ['*.jar'])
testCompile 'junit:junit:4.12'
compile 'com.android.support:cardview-v7:23.2.1'
compile 'com.android.support:recyclerview-v7:23.1.1'
compile 'com.android.support:appcompat-v7:23.0.0'
compile 'com.github.sembozdemir:ViewPagerArrowIndicator:1.0.0'
compile 'de.hdodenhof:circleimageview:2.0.0'
compile 'com.android.support:multidex:1.0.0'
compile "com.android.support:support-v4:23.0.0"
compile 'com.google.android.gms:play-services:8.4.0'
compile 'com.getkeepsafe.relinker:relinker:1.2.1'
compile 'com.stripe:stripe-android:1.0.3'
}
dependencies {
repositories {
mavenCentral()
}
compile 'com.sothree.slidinguppanel:library:3.3.0'
}
allprojects {
repositories {
maven { url "https://jitpack.io" }
}
}
apply plugin: 'realm-android'
和
//顶级构建文件,您可以在其中添加所有子项目/模块共有的配置选项。
buildscript {
repositories {
jcenter()
}
dependencies {
classpath 'com.android.tools.build:gradle:2.1.0'
classpath "io.realm:realm-gradle-plugin:0.88.2"
// NOTE: Do not place your application dependencies here; they belong
// in the individual module build.gradle files
}
}
allprojects {
repositories {
jcenter()
}
}
task clean(type: Delete) {
delete rootProject.buildDir
}
在使用条纹之前所有事情都顺利但是当我使用条带时它会显示错误 任何建议都会很高兴..
答案 0 :(得分:1)
您正在使用Realm的AAR Gradle插件版本(如0.88.0+,但是过时的,考虑到最新版本是1.1.0),但您实际上从未实际调用过{{1}在你的build.gradle文件中。
您还从应用程序类中忽略了这一点
apply plugin: 'realm-android'
哦顺便说一句,你可能应该使用modularized version of Google Play Services,这样你就不会首先需要Multi-Dex。