Pretty much complete.
1 parent 1ff0352 commit b09bccf52464aac14530e4d40308e9e12b1258df
Mark George authored on 11 Sep 2019
Showing 9 changed files
View
1
■■■■
app/build.gradle
dependencies {
implementation fileTree(dir: 'libs', include: ['*.jar'])
implementation 'androidx.appcompat:appcompat:1.1.0'
implementation 'androidx.constraintlayout:constraintlayout:1.1.3'
implementation 'com.google.android.material:material:1.0.0'
testImplementation 'junit:junit:4.12'
androidTestImplementation 'androidx.test:runner:1.2.0'
androidTestImplementation 'androidx.test.espresso:espresso-core:3.2.0'
}
View
19
app/src/main/AndroidManifest.xml
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="nz.ac.otago.infosci.timekeeper">
 
<uses-permission android:name="android.permission.VIBRATE" />
<application
android:allowBackup="true"
android:icon="@mipmap/ic_launcher"
android:label="@string/app_name"
android:roundIcon="@mipmap/ic_launcher_round"
android:supportsRtl="true"
android:theme="@style/AppTheme">
<activity android:name=".MainActivity">
<activity
android:name=".SettingsActivity"
android:label="@string/title_activity_settings"
android:theme="@style/AppTheme"
android:screenOrientation="portrait"
>
<intent-filter>
<action android:name="android.intent.action.MAIN" />
 
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
<activity
android:name=".TimerActivity"
android:screenOrientation="portrait"
 
/>
</application>
 
</manifest>
View
app/src/main/java/nz/ac/otago/infosci/timekeeper/MainActivity.java 100644 → 0
View
app/src/main/java/nz/ac/otago/infosci/timekeeper/TimerActivity.java 0 → 100644
View
app/src/main/res/layout/activity_main.xml 100644 → 0
View
app/src/main/res/layout/activity_timer.xml 0 → 100644
View
app/src/main/res/values/colors.xml
View
app/src/main/res/values/strings.xml
View
app/src/main/res/values/styles.xml