Versionberg


Source link: https://github.com/rockerhieu/Versionberg

Versionberg

Gradle plugin for versioning your library/application on every git commit.

(Generated by Breaking Bad Generator)

Usage

You can use the new plugin syntax for gradle 2.1+:

plugins {

id "io.github.rockerhieu.versionberg" version "<latest-version>" 
}

Or the legacy way:

buildscript {

 repositories {

  jcenter()
 
}

 dependencies {

  classpath 'io.github.rockerhieu:versionberg:<latest-version>'
 
}
 
}
  apply plugin: 'io.github.rockerhieu.versionberg'

Java

buildscript {

  repositories {

jcenter()
  
}

  dependencies {

classpath 'io.github.rockerhieu:versionberg:<latest-version>'
  
}
 
}
  apply plugin: 'io.github.rockerhieu.versionberg' apply plugin: 'java'  versionberg {

  major 1
  minor 0
  patch 0 
}
  version = versionberg.name

Android

buildscript {

  repositories {

jcenter()
  
}

  dependencies {

classpath 'io.github.rockerhieu:versionberg:<latest-version>'
  
}
 
}
  apply plugin: 'io.github.rockerhieu.versionberg' apply plugin: 'com.android.application'  versionberg {

  major 1
  minor 0
  patch 0 
}
  android {

  defaultConfig {

versionCode versionberg.code

versionName versionberg.name
  
}
 
}

Advanced usage

You can define template for version name and version code if you don't want to use the default settings provided by Versionberg

versionberg {

  // Increase when you make incompatible API changes (default value is 0)
  major 1

// Increase when you add functionality in a backwards-compatible manner (default value is 0)
  minor 0

// Increase when you make backwards-compatible bug fixes (default value is 0)
  patch 0

// default is ${
commitCount
}
, uncomment to use a custom build number
  // build 2

// Default version name template is '${
major
}
.${
minor
}
.${
patch
}
.${
build
}
'
  nameTemplate '${
major
}
.${
minor
}
-SNAPSHOT'

 // Default version code template is '${
build
}
'
  codeTemplate '(((${
major
}
 * 100) + ${
minor
}
) * 100) * 100000 + ${
build
}
' 
}

See Advanced Usage for the list of all available variables can be used in nameTemplate and codeTemplate.

My config

This is the config that I been using for some years:

versionberg {

  major 1
  minor 0
  nameTemplate '${
major
}
.${
minor
}
.${
commitCount
}
.${
commitSha
}
'
  codeTemplate '(((${
major
}
 * 100) + ${
minor
}
) * 100) * 100000 + ${
build
}
' 
}

Example value:

major: 1 minor: 0 patch: 0 build: 12 commitSha: 9a35eb9 commitCount: 12 code: 1000000012 name: 1.0.12.9a35eb9 

Main advantages:

  • ${ commitCount } : easy to reference to a version when communicating
  • ${ commitSha } : easy to identify the git revision of a given build

Contributing

Please fork this repository and contribute back using pull requests.

Any contributions, large or small, major features, bug fixes, additional language translations, unit/integration tests are welcomed and appreciated but will be thoroughly reviewed and discussed.

License

Copyright (c) 2016 Hieu Rocker  Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:  The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.  THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. 

Resources

PoppyView is a library which implements view on the bottom which come and go relative to the user scroll.

Just add the library to your application as a library project. And don't forget that your project must use NineOldAndroids.

A small library replicating the new dialogs in Android L.

Just as there was Retroweaver et al. for running Java 5 code with generics on Java 1.4, Retrolambda lets you run Java 8 code with lambda expressions on Java 7 or lower. It does this by transforming your Java 8 compiled bytecode so that it can run on a Java 7 runtime. After the transformation they are just a bunch of normal .class files, without adding any runtime dependencies.

ViewServer is a simple class you can use in your Android application to use the HierarchyViewer inspection tool.

ViewServer requires the Android SDK r12 or higher. http://developer.android.com/sdk/index.html

Extended Javassist for Android. DEX (ODEX) file can be made from ".class" file that is generated by Javassist.

Simple binary instrumentation toolkit for Android ARM + Thumb.

Instrumentation is based on library injection and hooking function entry points (in-line hooking).

The toolkit consists of two main components the hijack tool and the base library.

Topics


2D Engines   3D Engines   9-Patch   Action Bars   Activities   ADB   Advertisements   Analytics   Animations   ANR   AOP   API   APK   APT   Architecture   Audio   Autocomplete   Background Processing   Backward Compatibility   Badges   Bar Codes   Benchmarking   Bitmaps   Bluetooth   Blur Effects   Bread Crumbs   BRMS   Browser Extensions   Build Systems   Bundles   Buttons   Caching   Camera   Canvas   Cards   Carousels   Changelog   Checkboxes   Cloud Storages   Color Analysis   Color Pickers   Colors   Comet/Push   Compass Sensors   Conferences   Content Providers   Continuous Integration   Crash Reports   Credit Cards   Credits   CSV   Curl/Flip   Data Binding   Data Generators   Data Structures   Database   Database Browsers   Date &   Debugging   Decompilers   Deep Links   Dependency Injections   Design   Design Patterns   Dex   Dialogs   Distributed Computing   Distribution Platforms   Download Managers   Drawables   Emoji   Emulators   EPUB   Equalizers &   Event Buses   Exception Handling   Face Recognition   Feedback &   File System   File/Directory   Fingerprint   Floating Action   Fonts   Forms   Fragments   FRP   FSM   Functional Programming   Gamepads   Games   Geocaching   Gestures   GIF   Glow Pad   Gradle Plugins   Graphics   Grid Views   Highlighting   HTML   HTTP Mocking   Icons   IDE   IDE Plugins   Image Croppers   Image Loaders   Image Pickers   Image Processing   Image Views   Instrumentation   Intents   Job Schedulers   JSON   Keyboard   Kotlin   Layouts   Library Demos   List View   List Views   Localization   Location   Lock Patterns   Logcat   Logging   Mails   Maps   Markdown   Mathematics   Maven Plugins   MBaaS   Media   Menus   Messaging   MIME   Mobile Web   Native Image   Navigation   NDK   Networking   NFC   NoSQL   Number Pickers   OAuth   Object Mocking   OCR Engines   OpenGL   ORM   Other Pickers   Parallax List   Parcelables   Particle Systems   Password Inputs   PDF   Permissions   Physics Engines   Platforms   Plugin Frameworks   Preferences   Progress Indicators   ProGuard   Properties   Protocol Buffer   Pull To   Purchases   Push/Pull   QR Codes   Quick Return   Radio Buttons   Range Bars   Ratings   Recycler Views   Resources   REST   Ripple Effects   RSS   Screenshots   Scripting   Scroll Views   SDK   Search Inputs   Security   Sensors   Services   Showcase Views   Signatures   Sliding Panels   Snackbars   SOAP   Social Networks   Spannable   Spinners   Splash Screens   SSH   Static Analysis   Status Bars   Styling   SVG   System   Tags   Task Managers   TDD &   Template Engines   Testing   Testing Tools   Text Formatting   Text Views   Text Watchers   Text-to   Toasts   Toolkits For   Tools   Tooltips   Trainings   TV   Twitter   Updaters   USB   User Stories   Utils   Validation   Video   View Adapters   View Pagers   Views   Watch Face   Wearable Data   Wearables   Weather   Web Tools   Web Views   WebRTC   WebSockets   Wheel Widgets   Wi-Fi   Widgets   Windows   Wizards   XML   XMPP   YAML   ZIP Codes