Skip to content

Commit

Permalink
Prepping next release
Browse files Browse the repository at this point in the history
Incremented version number, and cleaned up AndroidManifest.xml. Also
made some changes to activity_about_screen.xml for accessibility
purposes.
  • Loading branch information
theblackwidower committed Feb 3, 2017
1 parent d2033de commit 3d9a00e
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 13 deletions.
4 changes: 2 additions & 2 deletions app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@ android {
applicationId "com.noprestige.kanaquiz"
minSdkVersion 16
targetSdkVersion 25
versionCode 1
versionName "0.1"
versionCode 2
versionName "0.2"
testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
}
buildTypes {
Expand Down
10 changes: 2 additions & 8 deletions app/src/main/AndroidManifest.xml
Original file line number Diff line number Diff line change
@@ -1,12 +1,6 @@
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.noprestige.kanaquiz"
android:versionCode="1"
android:versionName="0.1">

<uses-sdk
android:minSdkVersion="16"
android:targetSdkVersion="25" />
package="com.noprestige.kanaquiz">

<application
android:allowBackup="true"
Expand All @@ -22,7 +16,7 @@
</intent-filter>
</activity>
<activity android:name=".SetSelection" />
<activity android:name=".AboutScreen"></activity>
<activity android:name=".AboutScreen" />
</application>

</manifest>
8 changes: 5 additions & 3 deletions app/src/main/res/layout/activity_about_screen.xml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
android:orientation="vertical">

<TextView
android:text="About"
android:text="@string/about_title"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:id="@+id/lblTitle"
Expand All @@ -35,13 +35,14 @@
android:orientation="horizontal">

<TextView
android:text="The Kana Quiz"
android:text="@string/app_name"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:id="@+id/lblNameDisplay" />
<TextView
android:text="0.0"
android:text=""
android:layout_marginLeft="5dp"
android:layout_marginStart="5dp"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:id="@+id/lblVersionDisplay" />
Expand All @@ -56,6 +57,7 @@
android:textSize="14sp" />

<ImageView
android:contentDescription="@string/github_logo"
android:layout_width="match_parent"
app:srcCompat="@drawable/github_logo"
android:id="@+id/imageView2"
Expand Down
1 change: 1 addition & 0 deletions app/src/main/res/values/strings.xml
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@
<string name="request_answer">Enter the Romanji equivalent</string>
<string name="options_title">Options</string>
<string name="about_title">About</string>
<string name="github_logo">Github Logo</string>

<!-- Quiz Options -->
<string name="hiragana">Hiragana</string>
Expand Down

0 comments on commit 3d9a00e

Please sign in to comment.