Skip to content

Commit

Permalink
bumped version to 1.4
Browse files Browse the repository at this point in the history
  • Loading branch information
queler committed Mar 4, 2016
1 parent e0fa0d8 commit 62aec80
Show file tree
Hide file tree
Showing 29 changed files with 4,329 additions and 4,326 deletions.
70 changes: 35 additions & 35 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,36 +1,36 @@
#built application files
*.apk
*.ap_

# files for the dex VM
*.dex

# Java class files
*.class

# generated files
bin/
gen/

# Local configuration file (sdk path, etc)
local.properties

# Windows thumbnail db
Thumbs.db

# OSX files
.DS_Store

# Eclipse project files
.classpath
.project

# Android Studio
*.iml
.idea
#.idea/workspace.xml - remove # and delete .idea if it better suit your needs.
.gradle
build/

#NDK
#built application files
*.apk
*.ap_

# files for the dex VM
*.dex

# Java class files
*.class

# generated files
bin/
gen/

# Local configuration file (sdk path, etc)
local.properties

# Windows thumbnail db
Thumbs.db

# OSX files
.DS_Store

# Eclipse project files
.classpath
.project

# Android Studio
*.iml
.idea
#.idea/workspace.xml - remove # and delete .idea if it better suit your needs.
.gradle
build/

#NDK
obj/
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
holoken-dev
holoken-dev
===========
40 changes: 20 additions & 20 deletions app/build.gradle
Original file line number Diff line number Diff line change
@@ -1,21 +1,21 @@
apply plugin: 'com.android.application'
android {
compileSdkVersion 21
buildToolsVersion '23.0.2'

defaultConfig {
applicationId "com.holokenmod"
minSdkVersion 8
targetSdkVersion 22
}

buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.txt'
}
}
}

dependencies {
apply plugin: 'com.android.application'
android {
compileSdkVersion 21
buildToolsVersion '23.0.2'

defaultConfig {
applicationId "com.holokenmod"
minSdkVersion 8
targetSdkVersion 22
}

buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.txt'
}
}
}

dependencies {
}
64 changes: 32 additions & 32 deletions app/src/main/AndroidManifest.xml
Original file line number Diff line number Diff line change
@@ -1,33 +1,33 @@
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.holokenmod"
android:versionCode="13"
android:versionName="1.3" android:installLocation="auto">

<uses-sdk
android:minSdkVersion="8"
android:targetSdkVersion="22" />
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE"/>

<application
android:icon="@drawable/ic_launcher"
android:label="@string/app_name"
android:theme="@style/Theme.Dark.NoTitle"
>
<activity
android:name=".MainActivity"
android:label="@string/app_name">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
<activity android:name=".SaveGameListActivity" />
<activity android:name=".StatsActivity"
android:theme="@style/Theme.Dark.Default"
android:label="@string/stats_group_title" />
<activity android:name=".SettingsActivity"
android:theme="@style/Theme.Dark.Default"
android:label="@string/menu_settings" />
</application>

<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.holokenmod"
android:versionCode="14"
android:versionName="1.4" android:installLocation="auto">

<uses-sdk
android:minSdkVersion="8"
android:targetSdkVersion="22" />
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE"/>

<application
android:icon="@drawable/ic_launcher"
android:label="@string/app_name"
android:theme="@style/Theme.Dark.NoTitle"
>
<activity
android:name=".MainActivity"
android:label="@string/app_name">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
<activity android:name=".SaveGameListActivity" />
<activity android:name=".StatsActivity"
android:theme="@style/Theme.Dark.Default"
android:label="@string/stats_group_title" />
<activity android:name=".SettingsActivity"
android:theme="@style/Theme.Dark.Default"
android:label="@string/menu_settings" />
</application>

</manifest>
Loading

0 comments on commit 62aec80

Please sign in to comment.