buildscript {
repositories {
jcenter()
google()
}
dependencies {
classpath 'com.android.tools.build:gradle:3.0.1'
classpath 'com.google.gms:google-services:3.0.0'
// NOTE: Do not place your application dependencies here; they belong
// in the individual module build.gradle files
}
}
allprojects {
repositories {
jcenter()
google()
}
}
task clean(type: Delete) {
delete rootProject.buildDir
}
apply plugin: 'com.android.application'
android {
compileSdkVersion 25
buildToolsVersion '26.0.2'
defaultConfig {
applicationId 'com.bezets.cityappar'
minSdkVersion 16
targetSdkVersion 25
versionCode 4
versionName '1.3.0'
multiDexEnabled true
testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}
dexOptions {
javaMaxHeapSize "2g"
}
packagingOptions {
exclude 'META-INF/LICENSE'
exclude 'META-INF/LICENSE.txt'
exclude 'META-INF/LICENSE-FIREBASE.txt'
}
productFlavors {
}
lintOptions {
disable 'InvalidPackage'
abortOnError false
}
}
repositories {
mavenCentral()
}
dependencies {
implementation 'com.google.android.gms:play-services-ads:11.8.0'
implementation 'com.google.firebase:firebase-messaging:11.8.0'
compile fileTree(include: ['*.jar'], dir: 'libs')
androidTestCompile('com.android.support.test.espresso:espresso-core:2.2.2', {
exclude group: 'com.android.support', module: 'support-annotations'
})
compile 'com.android.support:appcompat-v7:25.3.1'
compile 'com.android.support:design:25.3.1'
compile 'com.android.support.constraint:constraint-layout:1.0.2'
compile 'com.android.support:recyclerview-v7:25.3.1'
compile 'com.android.support:cardview-v7:25.3.1'
compile 'com.android.support:palette-v7:25.3.1'
compile 'com.jakewharton:butterknife:7.0.1'
compile files('libs/volley.jar')
compile 'com.android.support:multidex:1.0.1'
compile 'com.google.firebase:firebase-core:11.0.4'
compile 'com.google.firebase:firebase-database:11.0.4'
compile 'com.google.firebase:firebase-storage:11.0.4'
compile 'com.google.android.gms:play-services-auth:11.0.4'
compile 'com.google.android.gms:play-services-maps:11.0.4'
compile 'com.google.android.gms:play-services-location:11.0.4'
compile 'com.google.maps.android:android-maps-utils:0.4'
compile 'com.google.firebase:firebase-auth:11.0.4'
compile 'com.google.firebase:firebase-crash:11.0.4'
compile 'com.google.firebase:firebase-ads:11.0.4'
compile 'com.squareup.retrofit:retrofit:1.9.0'
compile 'com.squareup.okhttp:okhttp:2.3.0'
compile 'com.squareup:otto:1.3.6'
compile 'com.github.bumptech.glide:glide:3.7.0'
compile 'uk.co.chrisjenx:calligraphy:2.2.0'
compile 'com.nineoldandroids:library:2.4.0'
compile 'com.github.paolorotolo:appintro:3.3.0'
compile 'com.facebook.android:facebook-android-sdk:[4,5)'
testCompile 'junit:junit:4.12'
}
apply plugin: 'com.google.gms.google-services'
我的错误和你的一样,用这些方法解决。错误如下所示:
Android依赖项'com.google.Android.gms:play-services-tasks'对于compile(11.4.2)和runtime(15.0.1)类路径有不同的版本。您应该通过DependencyResolution手动设置相同的版本
然后在文件:android/build.gradle中添加以下脚本:
allprojects {
...
configurations.all {
resolutionStrategy.force "com.google.android.gms:play-services-
tasks:15.0.1"
}
}
您的SQL语法中有一个错误;请查看与您的MySQL服务器版本相对应的手册,以便在第1行“password”附近使用正确的语法
我在中有很多作为依赖项的包,但它们都有作为版本。 我已经读到这是不推荐的,所以我想添加最新版本的所有。我怎么能这么做?我试过npm-check-updates,但它说所有的包都是最新的。
问题内容: 无论如何,我是否可以通过python获取设备的位置。目前,我必须使用硒并打开浏览器,使用定位服务网站,并将其结果设置为经/纬度变量。 但是,有没有更简单的方法可以做到这一点? 更新:我在RaspberryPi上使用3G加密狗,因此正在寻找一种获取特定经度/纬度的方法- 我可以通过Web服务成功完成此操作,只是想知道是否有针对这些请求的python内置更快的方法? 问题答案: 更新 :
我正试图上传一个新的更新,为我的上一个应用程序的测试版在谷歌play商店。
问题内容: 成功推送后,jenkins会自动构建应用程序,但版本始终为1.0。我想在詹金斯中插入相应的版本号,而不是“ 0”:1.119、1.120、1.121 … 那是我的build.gradle文件 build.sh 我的gradle.properities仅包含评论。 问题答案: 通过将这两个字符串插入到build.gradle的defaultConfig中解决了问题: 代替
据我所知,Hibernate Envers会在您创建,更改或删除带有@Audited注释的对象时存储修订版。 Envers自动将修订日期设置为当前时间。是否可以手动设置此时间? 我需要用它来处理一个数据有有效时间的时态集合,这需要手动设置。