Skip to content
This repository has been archived by the owner on Jun 27, 2021. It is now read-only.

Commit

Permalink
Changes:
Browse files Browse the repository at this point in the history
-added Google Sheets integration
-changed settings activity to data management activity, ViewDataActivity allows the ability to view data (wow!) and clear the spreadsheet
-made font childish
  • Loading branch information
humzakh committed Apr 23, 2019
1 parent 499cc8c commit 5b8e26a
Show file tree
Hide file tree
Showing 23 changed files with 1,360 additions and 229 deletions.
52 changes: 52 additions & 0 deletions asc-sos-android/.idea/codeStyles/Project.xml

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

456 changes: 456 additions & 0 deletions asc-sos-android/.idea/dbnavigator.xml

Large diffs are not rendered by default.

6 changes: 5 additions & 1 deletion asc-sos-android/app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,11 @@ dependencies {
androidTestImplementation 'com.android.support.test:runner:1.0.2'
androidTestImplementation 'com.android.support.test.espresso:espresso-core:3.0.2'
implementation 'com.google.android.gms:play-services-auth:16.0.1'
implementation('com.google.apis:google-api-services-sheets:v4-rev9-1.22.0') {
implementation 'pub.devrel:easypermissions:0.3.0'
implementation('com.google.api-client:google-api-client-android:1.25.0') {
exclude group: 'org.apache.httpcomponents'
}
implementation('com.google.apis:google-api-services-sheets:v4-rev573-1.25.0') {
exclude group: 'org.apache.httpcomponents'
}

Expand Down
5 changes: 4 additions & 1 deletion asc-sos-android/app/src/main/AndroidManifest.xml
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
package="com.humzaman.asc_sos_android">

<uses-permission android:name="android.permission.INTERNET"/>
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE"/>
<uses-permission android:name="android.permission.GET_ACCOUNTS"/>

<application
Expand All @@ -13,7 +14,9 @@
android:supportsRtl="true"
android:theme="@style/AppTheme">

<activity android:name=".SettingsActivity">
<activity
android:name=".ViewDataActivity"
android:screenOrientation="portrait">
</activity>
<activity
android:name=".Main3Activity"
Expand Down
Loading

0 comments on commit 5b8e26a

Please sign in to comment.