release

Which certificate should I use to sign my Mac OS X application?

放肆的年华 提交于 2019-12-03 09:12:51
问题 We are developing a Mac OS X application that we are going to distribute outside the Mac App Store. We ended up having these certificates in the Mac Developers program: and when I go to select one for signing the application, I find this: Am I correct in that I should use Developer ID: * for Debug? Will that allow developers that don’t have my company’s certificate to sign the application to be able to run it locally? What certificate should I use for Release? 回答1: For development (for

How to make Android app automatically configure w/ debug vs. release values?

我怕爱的太早我们不能终老 提交于 2019-12-03 08:33:16
I'm working on an Android app, specifically one that uses the Facebook Android SDK. In development mode, I'm working with a test Facebook app that goes by one ID. However, in release mode, the app will be working with second Facebook app with a different ID. I'm wondering how most Android (or Java might be a suitable enough realm of knowledge) developers here go about having their app automatically build with debug vs. release values. An ideal solution does not involve a manual switch (e.g.: switching public static final DEBUG = false; to true ) before building. It's been a while since you

Android Release Version and “Waiting for Debugger”

爱⌒轻易说出口 提交于 2019-12-03 08:06:36
问题 I know this has been asked before but I still don't have a solution. My first app: developed and debugged on my moto droid and then followed all the release steps, (exported from Eclipse, using my key to sign) including removing the debug in the manifest xml. I copied the resulting apk to the droid, disconnected the usb and installed it by double clicking on the file using Astro. I get the "Waiting for Debugger" message like when I am debugging but it never goes away. Doing something real

How can I prevent using the Settings.bundle in Release build v.s. Debug build?

主宰稳场 提交于 2019-12-03 07:16:01
I need to have a settings.bundle in our debug build, but don't want to have it in our Release. How do I approach this? Is there a runscript I can use to remove it from the copy bundle resources building phase? You can write a script to delete the setting bundle altogether for a certain build configuration. For the target, under "Build Settings", there is an option to run a script. This script should do what you need: BUILD_APP_DIR=${BUILT_PRODUCTS_DIR}/${PRODUCT_NAME}.app if [ "$CONFIGURATION" == "Release" ]; then rm -Rf $BUILD_APP_DIR/Settings.bundle echo "Removed Settings Bundle" fi The

Having JAVA_HOME inconsistency issue with maven

依然范特西╮ 提交于 2019-12-03 07:08:30
I am on the verge of releasing a project but it seem JAVA_HOME is been inconsistent. Maybe it's been overridden somewhere else? I am using ubuntu 14.04 and I have openjdk-7, java-7-oracle, java-8-oracle. Default java was set using update-java-alternatives java -version java version "1.8.0_25" Java(TM) SE Runtime Environment (build 1.8.0_25-b17) Java HotSpot(TM) 64-Bit Server VM (build 25.25-b02, mixed mode) mvn -version gives the following output Apache Maven 3.2.1 (ea8b2b07643dbb1b84b6d16e1f08391b666bc1e9; 2014-02-14T17:37:52+00:00) Maven home: /usr/share/maven3 Java version: 1.8.0_25, vendor

Alpha、Beta、RC、GA、Release版本号的含义

二次信任 提交于 2019-12-03 06:39:15
现在开源软件遍布天下,常常在实践中纠结该使用软件的哪些版本是比较合适的,因此有必要对常见软件版本号的含义有一些基本的了解。 本文就对常见的一些软件版本号的含义做一些简要说明。 Alpha: Alpha是内部测试版,一般不向外部发布,通常会有很多Bug,除非你也是测试人员,否则不建议使用,alpha 就是α,是希腊字母的第一位,表示最初级的版本,beta 就是β,alpha 版就是比beta还早的测试版,一般都是内部测试的版本。 Beta: 该版本相对于α版已有了很大的改进,消除了严重的错误,但还是存在着一缺陷,需要经过多次测试来进一步消除。这个阶段的版本会一直加入新的功能。 RC: RC(Release Candidate),发行候选版本。和Beta版最大的差别在于Beta阶段会一直加入新的功能,但是到了RC版本,几乎就不会加入新的功能了,而主要着重于除错。RC版本是最终发放给用户的最接近正式版的版本,发行后改正bug就是正式版了,就是正式版之前的最后一个测试版。 GA: GA(general availability), 正式发布的版本。 比如:MySQL Community Server 5.7.21 GA这是MySQL Community Server 5.7 第21个发行稳定的版本,GA意味着General Availability,也就是官方开始推荐广泛使用了。

Debug vs. Release builds in the Android NDK

╄→гoц情女王★ 提交于 2019-12-03 06:18:41
问题 I'm working on a large game engine that must be ported to Android. All the code is C/C++, so we are porting via the NDK. I've got everything building, but after lots of scouring, I'm still uncertain what the best method is for building Debug vs. Release versions of our .so file. Changing things by hand every time is getting old. Do you have different Application.mk files for each target? Or is there some way to include multiple targets in a single Android.mk file under the jni/ directory? Or

How to handle debug/release config transformations in ASP.NET vNext

只愿长相守 提交于 2019-12-03 05:40:53
问题 In previous versions of ASP.NET many of us used Web.Debug.config / Web.Release.config files trasformations that would look something like this: Web.config : <connectionStrings> <add name="AppDB" connectionString="Data Source=(LocalDb)\\..." /> </connectionStrings> Web.Release.config : <connectionStrings> <add name="AppDB" connectionString="Data Source=(ReleaseDb)\\..." xdt:Transform="SetAttributes" xdt:Locator="Match(name)"/> </connectionStrings> As per ASP.NET vNext tutorial you still can

Objective C iPhone when to set object references to nil

我与影子孤独终老i 提交于 2019-12-03 05:23:33
问题 I have been developing with objective C and the Cocoa framework for quite some time now. However it is still not absolutely clear to me, when am I supposed to set object references to nil. I know it is recommended to do so right before releasing an object that has a delegate and you should also do so in the viewDidUnload method for retained subviews. But exactly when should this be done and why?. What does it accomplish exactly?. Thank you in advance. -Oscar 回答1: Say you have a pointer myView

How to build a release version of an iOS framework in Xcode?

末鹿安然 提交于 2019-12-03 05:08:34
问题 Let's say I do the following: Open Xcode 7 File | New | Project | Cocoa Touch Framework Create "TestFramework" with the Swift language Create a file Hello.swift with public func hello() { print("Hello") }. From here, I can build a debug build of the framework (inside the Debug-iphoneos folder), but I cannot figure out how to build the release version of the framework (inside Release-iphoneos). I thought Archive might do it, but it doesn't. Pointers please? 回答1: To get a release build, you