Skip to content

Commit

Permalink
added screenshorts of project
Browse files Browse the repository at this point in the history
  • Loading branch information
anubhavshrimal committed Nov 2, 2016
1 parent 2bfe689 commit 3d5c5a9
Show file tree
Hide file tree
Showing 61 changed files with 4,251 additions and 4,249 deletions.
16 changes: 8 additions & 8 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
*.iml
.gradle
/local.properties
/.idea/workspace.xml
/.idea/libraries
.DS_Store
/build
/captures
*.iml
.gradle
/local.properties
/.idea/workspace.xml
/.idea/libraries
.DS_Store
/build
/captures
9 changes: 7 additions & 2 deletions .idea/gradle.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

3 changes: 0 additions & 3 deletions .idea/misc.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion .idea/vcs.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

10 changes: 5 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# CalculatorApp
Started on 01 March 2016

An andoid application which performs the functions of a basic calculator, scientific calculator and unit converter.
You can run this projects's apk file on any android mobile phone and work on this project using android studios.
# CalculatorApp
Started on 01 March 2016

An andoid application which performs the functions of a basic calculator, scientific calculator and unit converter.
You can run this projects's apk file on any android mobile phone and work on this project using android studios.
2 changes: 1 addition & 1 deletion app/.gitignore
Original file line number Diff line number Diff line change
@@ -1 +1 @@
/build
/build
56 changes: 28 additions & 28 deletions app/build.gradle
Original file line number Diff line number Diff line change
@@ -1,28 +1,28 @@
apply plugin: 'com.android.application'

android {
compileSdkVersion 23
buildToolsVersion "23.0.2"

defaultConfig {
applicationId "anubhav.calculatorapp"
minSdkVersion 16
targetSdkVersion 23
versionCode 1
versionName "1.0"
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}
}

dependencies {
compile fileTree(include: ['*.jar'], dir: 'libs')
testCompile 'junit:junit:4.12'
compile 'com.android.support:appcompat-v7:23.1.1'
compile 'com.android.support:design:23.1.1'
compile files('libs/javaluator-3.0.1.jar')
}
apply plugin: 'com.android.application'

android {
compileSdkVersion 23
buildToolsVersion "23.0.2"

defaultConfig {
applicationId "anubhav.calculatorapp"
minSdkVersion 16
targetSdkVersion 23
versionCode 1
versionName "1.0"
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}
}

dependencies {
compile fileTree(include: ['*.jar'], dir: 'libs')
testCompile 'junit:junit:4.12'
compile 'com.android.support:appcompat-v7:23.1.1'
compile 'com.android.support:design:23.1.1'
compile files('libs/javaluator-3.0.1.jar')
}
34 changes: 17 additions & 17 deletions app/proguard-rules.pro
Original file line number Diff line number Diff line change
@@ -1,17 +1,17 @@
# Add project specific ProGuard rules here.
# By default, the flags in this file are appended to flags specified
# in C:\Users\Anubhav\AppData\Local\Android\sdk/tools/proguard/proguard-android.txt
# You can edit the include path and order by changing the proguardFiles
# directive in build.gradle.
#
# For more details, see
# http://developer.android.com/guide/developing/tools/proguard.html

# Add any project specific keep options here:

# If your project uses WebView with JS, uncomment the following
# and specify the fully qualified class name to the JavaScript interface
# class:
#-keepclassmembers class fqcn.of.javascript.interface.for.webview {
# public *;
#}
# Add project specific ProGuard rules here.
# By default, the flags in this file are appended to flags specified
# in C:\Users\Anubhav\AppData\Local\Android\sdk/tools/proguard/proguard-android.txt
# You can edit the include path and order by changing the proguardFiles
# directive in build.gradle.
#
# For more details, see
# http://developer.android.com/guide/developing/tools/proguard.html
# Add any project specific keep options here:
# If your project uses WebView with JS, uncomment the following
# and specify the fully qualified class name to the JavaScript interface
# class:
#-keepclassmembers class fqcn.of.javascript.interface.for.webview {
# public *;
#}
24 changes: 12 additions & 12 deletions app/src/androidTest/java/anubhav/calculatorapp/ApplicationTest.java
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
package anubhav.calculatorapp;

import android.app.Application;
import android.test.ApplicationTestCase;

/**
* <a href="http://d.android.com/tools/testing/testing_android.html">Testing Fundamentals</a>
*/
public class ApplicationTest extends ApplicationTestCase<Application> {
public ApplicationTest() {
super(Application.class);
}
package anubhav.calculatorapp;

import android.app.Application;
import android.test.ApplicationTestCase;

/**
* <a href="http://d.android.com/tools/testing/testing_android.html">Testing Fundamentals</a>
*/
public class ApplicationTest extends ApplicationTestCase<Application> {
public ApplicationTest() {
super(Application.class);
}
}
110 changes: 55 additions & 55 deletions app/src/main/AndroidManifest.xml
Original file line number Diff line number Diff line change
@@ -1,55 +1,55 @@
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="anubhav.calculatorapp">

<application
android:allowBackup="true"
android:icon="@mipmap/ic_launcher"
android:label="@string/app_name"
android:supportsRtl="true"
android:theme="@style/AppTheme">
<activity
android:name=".MainActivity"
android:label="@string/app_name"
android:theme="@style/AppTheme.NoActionBar">
<intent-filter>
<action android:name="android.intent.action.MAIN" />

<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
<activity
android:name=".StandardCal"
android:label="@string/title_activity_standard_cal"
android:theme="@style/AppTheme.NoActionBar" />
<activity
android:name=".ScientificCal"
android:label="@string/title_activity_scientific_cal"
android:theme="@style/AppTheme.NoActionBar" />
<activity
android:name=".UnitCoverter"
android:label="@string/title_activity_unit_coverter"
android:theme="@style/AppTheme.NoActionBar" />
<activity
android:name=".UnitArea"
android:label="@string/title_activity_unit_area"
android:theme="@style/AppTheme.NoActionBar" />
<activity
android:name=".UnitLength"
android:label="@string/title_activity_unit_length"
android:theme="@style/AppTheme.NoActionBar" />
<activity
android:name=".UnitWeight"
android:label="@string/title_activity_unit_weight"
android:theme="@style/AppTheme.NoActionBar" />
<activity
android:name=".UnitTemperature"
android:label="@string/title_activity_unit_temperature"
android:theme="@style/AppTheme.NoActionBar" />
<activity
android:name=".History"
android:label="@string/title_activity_history"
android:theme="@style/AppTheme.NoActionBar"></activity>
</application>

</manifest>
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="anubhav.calculatorapp">

<application
android:allowBackup="true"
android:icon="@mipmap/ic_launcher"
android:label="@string/app_name"
android:supportsRtl="true"
android:theme="@style/AppTheme">
<activity
android:name=".MainActivity"
android:label="@string/app_name"
android:theme="@style/AppTheme.NoActionBar">
<intent-filter>
<action android:name="android.intent.action.MAIN" />

<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
<activity
android:name=".StandardCal"
android:label="@string/title_activity_standard_cal"
android:theme="@style/AppTheme.NoActionBar" />
<activity
android:name=".ScientificCal"
android:label="@string/title_activity_scientific_cal"
android:theme="@style/AppTheme.NoActionBar" />
<activity
android:name=".UnitCoverter"
android:label="@string/title_activity_unit_coverter"
android:theme="@style/AppTheme.NoActionBar" />
<activity
android:name=".UnitArea"
android:label="@string/title_activity_unit_area"
android:theme="@style/AppTheme.NoActionBar" />
<activity
android:name=".UnitLength"
android:label="@string/title_activity_unit_length"
android:theme="@style/AppTheme.NoActionBar" />
<activity
android:name=".UnitWeight"
android:label="@string/title_activity_unit_weight"
android:theme="@style/AppTheme.NoActionBar" />
<activity
android:name=".UnitTemperature"
android:label="@string/title_activity_unit_temperature"
android:theme="@style/AppTheme.NoActionBar" />
<activity
android:name=".History"
android:label="@string/title_activity_history"
android:theme="@style/AppTheme.NoActionBar"></activity>
</application>

</manifest>
Loading

0 comments on commit 3d5c5a9

Please sign in to comment.