along with this program. If not, see <http://www.gnu.org/licenses/>.
-->
<manifest package="com.owncloud.android"
- android:versionCode="20151124"
+ android:versionCode="20151125"
android:versionName="ownCloud beta" xmlns:android="http://schemas.android.com/apk/res/android">
<uses-sdk
defaultConfig {
applicationId "com.owncloud.android.beta"
- versionCode computeVersionCode()
+ versionCode 20151125
versionName "ownCloud beta"
}
packagingOptions {
exclude 'META-INF/LICENSE.txt'
}
-}
-
-
+ signingConfigs {
+ release {
+ storeFile file("../beta.jks")
+ storePassword KSTOREPWD
+ keyAlias "beta"
+ keyPassword KSTOREPWD
+ }
+ }
+ buildTypes {
+ release {
+ signingConfig signingConfigs.release
+ }
+ }
-def computeVersionCode() {
- def date = new Date()
- def formattedDate = date.format('yyyyMMdd').toInteger()
- return formattedDate
}
\ No newline at end of file