Android version release warning message: This App Bundle contains Java/Kotlin code, which might be obfuscated

Seems like it’s a warning message coming from the new play console, you can solve it just by setting your minimum api level to 29 or even better by uploading the retrace mapping file as described here. Enable minify : buildTypes { release { minifyEnabled true proguardFiles getDefaultProguardFile(‘proguard-android-optimize.txt’), ‘proguard-rules.pro’ } } After building apk/app bundle … Read more

how to release a project which depends on a 3rd party SNAPSHOT project in maven

Problem is with the allowTimestampedSnapshots parameter name, it’s in the documentation but the plugin’s source uses a different parameter name in expression – ignoreSnapshots. So just use -DignoreSnapshots=true and the prepare goal of the release plugin will ignore snapshot dependencies.

What exactly is a Release in GitHub?

From Official GitHub: Releases are GitHub’s way of packaging and providing software to your users. You can think of it as a replacement to using downloads to provide software. With Releases, you can provide links to binary files, as well as release notes describing your changes. At their core, Releases are based on Git tags. … Read more

How to switch between debug and release in Visual C# 2010 Express?

Enable the Tools → Settings → Expert Settings menu option Go to Tools → Options In the dialog box, check Show All Settings option in the bottom left. In the above dialog, now choose Projects and Solutions → General. Check the option Show advanced build configurations. Click OK. You should be able to see the … Read more

What is autoreleasepool? [duplicate]

The @autoreleasepool statement is doing the same job as before, instead of using the NSAutoreleasePool class. The way the NSAutoreleasePool worked was a bit weird, as creating it caused an effect throughout the whole application; @autoreleasepool creates a scoped area and makes it clearer what’s within the pool and when it drains (when it goes … Read more

Running a release build with Xcode 4

Xcode 4 introduces schemes which provide all the options on how to build/run/profile/etc. your application. You can change the active scheme using the Scheme drop-down button at the top of the project window and/or edit the scheme via Product > Edit Scheme… ⌘< menu item. Then on the left source list, you can select the … Read more

mvn release:prepare not committing changes to pom.xml

I solved the issue on my side (running maven 3.0.5) by updating the git scm provider dependency, not the release plugin version: <build> <plugins> <plugin> <artifactId>maven-release-plugin</artifactId> <version>2.4.2</version> <dependencies> <dependency> <groupId>org.apache.maven.scm</groupId> <artifactId>maven-scm-provider-gitexe</artifactId> <version>1.8.1</version> </dependency> </dependencies> </plugin> </plugins> </build> The git scm 1.8.1 version correctly makes the git commit (tested with the prepare and rollback goals). EDIT: … Read more

Hata!: SQLSTATE[HY000] [1045] Access denied for user 'divattrend_liink'@'localhost' (using password: YES)