release

Gradle Build Failure

佐手、 提交于 2019-12-03 20:33:46
问题 My project compiles and executes well on debug mode but when i try to generate a signed apk, errors arise. This appears on the message log: :app:proguardRelease Warning:android.support.v4.app.DialogFragment: can't find referenced class android.support.v4.app.DialogFragment$DialogStyle Warning:android.support.v4.app.FragmentTransaction: can't find referenced class android.support.v4.app.FragmentTransaction$Transit Warning:android.support.v4.view.ViewCompat: can't find referenced class android

Having JAVA_HOME inconsistency issue with maven

喜夏-厌秋 提交于 2019-12-03 17:28:33
问题 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

When should mvn release be used in the project lifecycle?

烂漫一生 提交于 2019-12-03 16:27:37
To clarify the question : I am looking for established best-practices or a pro/con analysis of known practices by project lifecycle I mean : deploy to pre-integration, integration, QA, preprod and prod environment. For some context: Our project deploys to integration and QA every week, currenlty we create a new release for each integration deployment, but this doesn't feel right. It leads to updating all the poms every week breaking dev level dependencies, forcing every dev to do a refresh of their eclipse configurations. We have large workspaces and eclipse doesn't handle the refreshes so

Tagging a TFS Git repository during a release

三世轮回 提交于 2019-12-03 16:26:00
I am setting our build/release environment using TFS 2017. I set up the Build to run automatically after each commit, and when we are ready to release a version of our application, a Release is manually created, and then deployed to various environments. We would like to tag released versions in our git repository in order to easily know which git revision correspond to a binary. The "Label Source" setting in the Build definition allows to tag a git revision at build time, but since we build on every commit that would generate a lot of tags which we don't care about (as they are not deployed

App Store: submitting app with future release date then changing it to earlier date after it is approved [closed]

你离开我真会死。 提交于 2019-12-03 16:05:16
问题 Closed. This question is off-topic. It is not currently accepting answers. Want to improve this question? Update the question so it's on-topic for Stack Overflow. Closed 2 years ago . Lets say I submit my app for approval now. I set Availability Date to something like Nov. 30, 2011, because I have not yet decided when I really want to release my app. Then fortunately, my app gets approved. Will I be able to edit the Availability Date after my app is approved? Assuming question 1 gets a yes,

How to solve the failed verification with zipalign?

陌路散爱 提交于 2019-12-03 15:11:43
I have a problem with zipalign. I can't go through the proces. Each run ends with Verification FAILED . For some files i see something like this 2574474 res/drawable-xxxhdpi-v4/abc_btn_radio_to_on_mtrl_000.png (BAD - 2) for the reset 7044070 res/layout/notification_template_media.xml (OK - compressed) The apk is generated but when I upload it via console I receive info that it is not compressed properly. What can I do ? Seems like gradle has pushed a new version without the zipalign task. I had the same issue after changing this: classpath 'com.android.tools.build:gradle:2.+' to classpath 'com

CouchDB as a part of an Erlang release

一个人想着一个人 提交于 2019-12-03 13:25:26
I would like to build and deploy an application which has Django as frontend, YAWS ( appmods ) or Mochiweb/Webmachine as a backend and CouchDB as a datastore. Furthermore, I plan to extensively use CouchDB's ability to replicate in order to provide high fault tolerance for the whole application. I tend to think that in order to achieve this, I must create a single OTP release which has YAWS and CouchDB as Erlang/OTP applications. Does this approach seem to be correct? How can I organize YAWS and CouchDB in terms of OTP applications in order to create a solid production setup? Are there any

Using Variable of AppDelegate as a Global Variable - question regarding release/retain

 ̄綄美尐妖づ 提交于 2019-12-03 11:17:15
问题 I have created a Variable called "myDBManager" in my AppDelegate: @interface myAppDelegate : NSObject <UIApplicationDelegate> { MyDBManager *myDBManager; } @property (nonatomic, retain) MyDBManager *myDBManager; @end which I use in most other classes as a global Variable holding all my critical application data. It gets only created once and dies at the end only. So for example to get to the myDBManager in AnyOtherClass @interface AnyOtherClass : UITableViewController { MyDBManager

How to automate version number update process for my Eclipse plugin built with Maven

a 夏天 提交于 2019-12-03 10:31:16
I working with a project similar to the project described here . So, it has a few modules in parent pom.xml: <modules> <module>../de.vogella.tycho.plugin</module> <module>../de.vogella.tycho.feature</module> <module>../de.vogella.tycho.p2updatesite</module> </modules> These modules have a general version number e.g. 1.0.0-SNAPSHOT or without -SNAPSHOT . The feature.xml file needs to contain the same version number: <feature id="com.my.feature" label="My plugin feature" version="1.0.0"> and: <plugin id="com.my.plugin" download-size="0" install-size="0" version="1.0.0" unpack="false"/> The files

Visual Studio - How to remove a reference in Release mode

我们两清 提交于 2019-12-03 09:59:23
I'm developing a library for use in other apps and this library has lots of debugging and logging statements thanks to NLog. Is it possible to exclude the reference to NLog.dll when I switch to release mode? Cheers, You can manually edit the csproj file, and do something like this: <Reference Include="NLog" Condition="'$(Configuration)' == 'Debug'" /> This only makes it reference that assembly in Debug. I wouldn't recommend doing this often though, because this behavior isn't reflected in the references list in Visual Studio when you change the configuration. It does work when compiling though