小编DaN*_*LtR的帖子

Android Studio-构建后无法在设备上找到我的应用

我正在使用android studio 1.3,正在Nexus 5上运行/调试我的应用程序-效果很好,但是退出该应用程序后-我无法在设备上找到我的应用程序..所以实际上每次我想运行它时,我都需要将我的设备连接到工作室并运行...

它突然发生了,过去我运行了程序,然后成功了!留在设备上尝试在其他设备上。

    apply plugin: 'com.android.application'

android {
    compileSdkVersion 22
    buildToolsVersion "22.0.1"

    defaultConfig {
        applicationId "app.meantneat.com.meetneat"
        minSdkVersion 17
        targetSdkVersion 22
        versionCode 1
        versionName "1.0"
    }
    buildTypes {
        release {
            minifyEnabled false
            proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
        }
    }
}

repositories {
    mavenCentral()

    maven {
        url 'http://lorenzo.villani.me/android-cropimage/'
    }
}

dependencies {

    compile fileTree(dir: 'libs', include: ['*.jar'])
    compile 'com.android.support:appcompat-v7:22.0.0'
    compile 'com.google.android.gms:play-services:7.3.0'
    compile 'com.astuetz:pagerslidingtabstrip:1.0.1'
    //compile 'com.getbase:floatingactionbutton:1.9.0'
    //compile 'com.parse.bolts:bolts-android:1.+'
    compile 'com.android.support:support-v4:22.2.0'
    compile 'com.melnykov:floatingactionbutton:1.3.0'
    compile 'de.hdodenhof:circleimageview:1.3.0'
    compile 'me.villani.lorenzo.android:android-cropimage:1.1.0'
    compile 'com.oguzdev:CircularFloatingActionMenu:1.0.2'




    //compile fileTree(dir: 'libs', include: 'Parse-*.jar') …
Run Code Online (Sandbox Code Playgroud)

android android-studio build.gradle

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

标签 统计

android ×1

android-studio ×1

build.gradle ×1