Finalising before merging

This commit is contained in:
Alexandros Schillings
2015-07-14 15:04:31 +01:00
parent 459eb1d2d4
commit 8c0c0b4ebe
21 changed files with 61 additions and 106 deletions
+8 -7
View File
@@ -1,12 +1,13 @@
apply plugin: 'com.android.application'
final def versionMajor = 1
final def versionMinor = 0
final def versionPatch = 0
final def androidVersionCode = 100
final int versionMajor = 1
final int versionMinor = 0
final int versionPatch = 0
final int androidVersionCode = 5
final def targetSdk = rootProject.targetSdkVersion;
final def minSdkRed = rootProject.minSdkVersion;
final int targetSdk = rootProject.targetSdkVersion;
final int minSdkRed = rootProject.minSdkVersion;
final String semanticVersion = "${versionMajor}.${versionMinor}.${versionPatch}"
repositories {
maven {
@@ -35,7 +36,7 @@ android {
minSdkVersion minSdkRed
targetSdkVersion targetSdk
versionCode androidVersionCode
versionName "${versionMajor}.${versionMinor}.${versionPatch}"
versionName semanticVersion
}
buildTypes {
+2
View File
@@ -86,6 +86,8 @@
<excludeFolder url="file://$MODULE_DIR$/build/intermediates/rs" />
<excludeFolder url="file://$MODULE_DIR$/build/intermediates/symbols" />
<excludeFolder url="file://$MODULE_DIR$/build/outputs" />
<excludeFolder url="file://$MODULE_DIR$/build/reports" />
<excludeFolder url="file://$MODULE_DIR$/build/test-results" />
<excludeFolder url="file://$MODULE_DIR$/build/tmp" />
</content>
<orderEntry type="jdk" jdkName="Android API 22 Platform" jdkType="Android SDK" />
+1 -7
View File
@@ -1,13 +1,7 @@
<?xml version="1.0" encoding="utf-8"?>
<manifest
package="uk.co.alt236.btlescan"
xmlns:android="http://schemas.android.com/apk/res/android"
android:versionCode="3"
android:versionName="0.0.3">
<uses-sdk
android:minSdkVersion="18"
android:targetSdkVersion="18"/>
xmlns:android="http://schemas.android.com/apk/res/android">
<uses-permission android:name="android.permission.BLUETOOTH"/>
<uses-permission android:name="android.permission.BLUETOOTH_ADMIN"/>
@@ -63,7 +63,7 @@
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:paddingRight="5dp"
android:text="Updated:"
android:text="@string/label_updated"
android:textSize="12sp"
android:textStyle="bold"/>
@@ -187,7 +187,7 @@
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:paddingRight="5dp"
android:text="Descriptor:"
android:text="@string/label_decriptor"
android:textSize="12sp"
android:textStyle="bold"/>
+2 -1
View File
@@ -70,5 +70,6 @@
<string name="label_state">State:</string>
<string name="label_tx_power">TX Power:</string>
<string name="label_uuid">UUID:</string>
<string name="label_updated">Updated:</string>
<string name="label_decriptor">Descriptor:</string>
</resources>