English 中文(简体)
测试释放是在无签字的甲状腺上进行的。
原标题:Testing release builds on android without signing

I m试图对roid/JNI进行一些业绩分析。

我如何为检测准备释放?

我知道这样做是可能的,因为我已经成功地制作了双筒,并且没有通过<条码>安道尔roid.m<<>签署,但Im试图搬进和刺.工作室,我赢得了一席,让我产生试爆。 进入关键地区的垃圾似乎不可行

这只是一个试办项目,以证明我能够取得我所需要的业绩。 它永远不会分发,或者在我的桌上安装任何其他装置。

我能否完全取消所有法典的核查? 我现在做的是验证,该项目的最终使用是一种非联网的装置,意在作为黑箱的贴切处理。

最佳回答

就我可以说的话来说,奥基不可能排除强行要求,这大概是因为有人在奥古林作出真正可怕的设计决定。

然而,你可以公正地使用精彩的钥匙:

signingConfigs {
    garbage_key {
        keyAlias  androiddebugkey 
        keyPassword  android 
        storeFile file( C:/Users/<your_user>/.android/debug.keystore )
        storePassword  android 
    }
}

重新尝试升级,以做任何明智的事情。 这是我有史以来最恶劣的灾害。

问题回答

从终端/集装箱使用梯度中提取释放

./gradlew assembleRelease

指挥官一旦完成,你就可找到被点名的未署名的传真。 apk in the following path

PROJECT_NAME/app/build/outputs/apk/release/ 

如果你在建筑中安装了集束灯。 梯度档案,可临时评论

buildTypes {
    /*release { ... } */
}

以及

signingConfigs {

    /*release { ... } */
}

As an alternative, you can also produce a debug build. It doesn t require any keystore because it doesn t sign the APK.

./gradlew assembleDebug




相关问题
Android - ListView fling gesture triggers context menu

I m relatively new to Android development. I m developing an app with a ListView. I ve followed the info in #1338475 and have my app recognizing the fling gesture, but after the gesture is complete, ...

AsyncTask and error handling on Android

I m converting my code from using Handler to AsyncTask. The latter is great at what it does - asynchronous updates and handling of results in the main UI thread. What s unclear to me is how to handle ...

Android intent filter for a particular file extension?

I want to be able to download a file with a particular extension from the net, and have it passed to my application to deal with it, but I haven t been able to figure out the intent filter. The ...

Android & Web: What is the equivalent style for the web?

I am quite impressed by the workflow I follow when developing Android applications: Define a layout in an xml file and then write all the code in a code-behind style. Is there an equivalent style for ...

TiledLayer equivalent in Android [duplicate]

To draw landscapes, backgrounds with patterns etc, we used TiledLayer in J2ME. Is there an android counterpart for that. Does android provide an option to set such tiled patterns in the layout XML?

Using Repo with Msysgit

When following the Android Open Source Project instructions on installing repo for use with Git, after running the repo init command, I run into this error: /c/Users/Andrew Rabon/bin/repo: line ...

Android "single top" launch mode and onNewIntent method

I read in the Android documentation that by setting my Activity s launchMode property to singleTop OR by adding the FLAG_ACTIVITY_SINGLE_TOP flag to my Intent, that calling startActivity(intent) would ...

From Web Development to Android Development

I have pretty good skills in PHP , Mysql and Javascript for a junior developer. If I wanted to try my hand as Android Development do you think I might find it tough ? Also what new languages would I ...

热门标签