小编And*_*Dev的帖子

未找到用于签名配置'debug'的密钥库文件D\Telegram-master\TMessagesProj\config\release.keystore

我下载了Telegram的新版本.运行时,此错误显示:

Keystore file D\Telegram-master\TMessagesProj\config\release.keystore not found for signing config 'debug'.
Run Code Online (Sandbox Code Playgroud)

如何解决?

android android-keystore telegram

11
推荐指数
2
解决办法
1万
查看次数

部署文件时发生错误.安装失败的冲突提供商

我为我的项目生成apk文件,但是当我将它拖放到genymotion时,我看到了这个错误:

an error occurred while deploying the file. install failed conflicting provider
Run Code Online (Sandbox Code Playgroud)

android apk android-studio genymotion

6
推荐指数
1
解决办法
5724
查看次数

如何解决“解决com.theartofdev.edmodo:android-image-cropper:+失败”

我安装了新版本的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)

android gradle android-studio build.gradle

5
推荐指数
2
解决办法
3272
查看次数