Skip to content

Commit

Permalink
Initial commit - port to studio from Eclipse
Browse files Browse the repository at this point in the history
  • Loading branch information
pshadlyn committed Jun 6, 2014
0 parents commit 8cf99de
Show file tree
Hide file tree
Showing 164 changed files with 6,594 additions and 0 deletions.
26 changes: 26 additions & 0 deletions .gitignore
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
674 changes: 674 additions & 0 deletions LICENSE

Large diffs are not rendered by default.

10 changes: 10 additions & 0 deletions README.md
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]
25 changes: 25 additions & 0 deletions app/build.gradle
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:+'
}
24 changes: 24 additions & 0 deletions app/src/main/AndroidManifest.xml
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>
Loading

0 comments on commit 8cf99de

Please sign in to comment.