android-studio – 在Android Studio中的lib中反编译自生成的jar

apply plugin: 'com.android.application'
apply plugin: 'com.neenbedankt.android-apt'
apply plugin: 'com.github.triplet.play'

android {
    compileSdkVersion 23
    buildToolsVersion "23.0.2"

    defaultConfig {
        applicationId "com.prototype"
        minSdkVersion 19
        targetSdkVersion 23
        versionCode 1
        versionName "1.0"
    }

    buildTypes {
        release {
            minifyEnabled true
            proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
        }
        debug {
            testCoverageEnabled = false
        }
    }
}

dependencies {
    compile fileTree(dir: 'libs', include: ['*.jar'])
    testCompile 'junit:junit:4.12'
    testCompile "org.mockito:mockito-core:1.10.19"
    testCompile 'org.apache.oltu.oauth2:org.apache.oltu.oauth2.client:0.31'
}

我使用swagger codegen生成了一个jar,并在Android工作室中放置了我的应用程序的lib文件夹.它没有被反编译,也就是说,我无法在这里看到我的jar类.
我试过Invalidate caches / Restart.以前有时会工作.
但它不再起作用了.任何帮助将不胜感激.

最佳答案 您可能在build.gradle中缺少类似于:

compile files('libs/your-jar-filename.jar')
点赞