我下载了Telegram的新版本.运行时,此错误显示:
Keystore file D\Telegram-master\TMessagesProj\config\release.keystore not found for signing config 'debug'.
Run Code Online (Sandbox Code Playgroud)
如何解决?
我为我的项目生成apk文件,但是当我将它拖放到genymotion时,我看到了这个错误:
an error occurred while deploying the file. install failed conflicting provider
Run Code Online (Sandbox Code Playgroud) 我安装了新版本的Android Studio“ 2.1.0.9”。现在,当在此同步gradle错误消息时:
gradle failed resolve com.theartofdev.edmodo:android-image-cropper:+
Run Code Online (Sandbox Code Playgroud)
我使用了任何版本的图像裁剪器,但仍然存在此消息。摇篮:
buildscript {
repositories {
maven { url 'https://maven.fabric.io/public' }
}
dependencies {
classpath 'io.fabric.tools:gradle:1.+'
}
}
apply plugin: 'com.android.application'
apply plugin: 'io.fabric'
repositories {
mavenCentral()
jcenter()
maven { url 'https://maven.fabric.io/public' }
}
dependencies {
compile fileTree(include: ['*.jar'], dir: 'libs')
compile 'com.android.support:support-v4:23.1.1'
compile 'com.google.android.gms:play-services:8.4.0'
compile 'com.github.dmytrodanylyk.circular-progress-button:library:1.1.3'
compile 'com.theartofdev.edmodo:android-image-cropper:2.0.+'
compile 'com.squareup.picasso:picasso:2.5.2'
compile 'com.squareup.okhttp:okhttp-urlconnection:2.5.0'
}
android {
compileSdkVersion 'Google Apis:Google Apis:23'
buildToolsVersion '23.0.2'
useLibrary 'org.apache.http.legacy'
compileOptions {
sourceCompatibility JavaVersion.VERSION_1_7
targetCompatibility JavaVersion.VERSION_1_7
}
defaultConfig {
minSdkVersion …Run Code Online (Sandbox Code Playgroud)