-
Notifications
You must be signed in to change notification settings - Fork 86
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Initial commit - port to studio from Eclipse
- Loading branch information
pshadlyn
committed
Jun 6, 2014
0 parents
commit 8cf99de
Showing
164 changed files
with
6,594 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
# built application files | ||
*.apk | ||
*.ap_ | ||
|
||
# files for dev VM | ||
*.dex | ||
|
||
# Java class files | ||
*.class | ||
|
||
# generated files | ||
bin/ | ||
gen/ | ||
out/ | ||
build/ | ||
.gradle/ | ||
|
||
# project files | ||
*.iml | ||
.idea | ||
|
||
# local configuration file | ||
local.properties | ||
|
||
# Idea non-crucial project files | ||
*.iws |
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
Unit Converter Ultimate | ||
======================= | ||
|
||
A simple, lightweight, holo-themed unit converter for Android. Open source, it's hours of fun! | ||
|
||
**[Install from Google Play](https://play.google.com/store/apps/details?id=com.physphil.android.unitconverterultimate)** | ||
|
||
Developed by | ||
============ | ||
Phil Shadlyn - [email protected] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
apply plugin: 'android' | ||
|
||
android { | ||
compileSdkVersion 19 | ||
buildToolsVersion "19.1.0" | ||
|
||
defaultConfig { | ||
packageName "com.physphil.android.unitconverterultimate" | ||
minSdkVersion 8 | ||
targetSdkVersion 19 | ||
versionCode 15 | ||
versionName '2.0.4' | ||
} | ||
|
||
buildTypes { | ||
release { | ||
runProguard false | ||
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.txt' | ||
} | ||
} | ||
} | ||
|
||
dependencies { | ||
compile 'com.android.support:appcompat-v7:+' | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<manifest xmlns:android="http://schemas.android.com/apk/res/android" | ||
package="com.physphil.android.unitconverterultimate" | ||
android:installLocation="auto" > | ||
|
||
<application | ||
android:allowBackup="true" | ||
android:icon="@drawable/ic_launcher" | ||
android:label="@string/app_name" | ||
android:theme="@style/AppBaseTheme"> | ||
<activity | ||
android:name="com.physphil.android.unitconverterultimate.MainActivity" | ||
android:label="@string/app_name" | ||
android:windowSoftInputMode="stateHidden|adjustResize" > | ||
|
||
<intent-filter> | ||
<action android:name="android.intent.action.MAIN" /> | ||
<category android:name="android.intent.category.LAUNCHER" /> | ||
</intent-filter> | ||
|
||
</activity> | ||
</application> | ||
|
||
</manifest> |
Oops, something went wrong.