Skip to content

Commit

Permalink
Added slideshow and re-themed to Unwrappd (#19)
Browse files Browse the repository at this point in the history
* Finished adding prev wrapped functionality

* Reworked HomePageActivity, Firebase and Spotify Login

* Finished adding prev wrapped functionality (#17) (#18)

* Finished adding prev wrapped functionality (#17)

* comit

* edited prev wrapped

* added images

* Fixed background

---------

Co-authored-by: Aki1781 <[email protected]>

* Added slideshow when creating new wrapped, scrollable view of artists in summary, and more

Co-authored-by: yours-aditya <[email protected]>
Co-authored-by: sajanbtom <[email protected]>
Co-authored-by: aki1781 <[email protected]>

* Fixed auth, rebranded to Unwrappd

* Added template README

---------

Co-authored-by: Aki1781 <[email protected]>
Co-authored-by: yours-aditya <[email protected]>
Co-authored-by: sajanbtom <[email protected]>
  • Loading branch information
4 people authored Apr 20, 2024
1 parent 2ec6385 commit eb87951
Show file tree
Hide file tree
Showing 109 changed files with 1,748 additions and 1,303 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/android_build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,5 +29,5 @@ jobs:
- name: Upload build artifact
uses: actions/upload-artifact@v4
with:
name: SpotifyStats.apk
name: Unwrappd.apk
path: app/build/outputs/apk/debug/app-debug.apk
2 changes: 1 addition & 1 deletion .idea/.name

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

Binary file removed .idea/copilot/chatSessions/00000000000.xd
Binary file not shown.
Binary file removed .idea/copilot/chatSessions/blobs/version
Binary file not shown.
53 changes: 0 additions & 53 deletions .idea/copilot/chatSessions/xd.lck

This file was deleted.

18 changes: 1 addition & 17 deletions .idea/deploymentTargetDropDown.xml

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

1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
# Unwrappd
4 changes: 2 additions & 2 deletions app/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -5,11 +5,11 @@ plugins {
}

android {
namespace = "com.t1r2340.spotifystats"
namespace = "com.t1r2340.unwrappd"
compileSdk = 34

defaultConfig {
applicationId = "com.t1r2340.spotifystats"
applicationId = "com.t1r2340.unwrappd"
minSdk = 26
targetSdk = 34
versionCode = 1
Expand Down
2 changes: 1 addition & 1 deletion app/google-services.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
"client_info": {
"mobilesdk_app_id": "1:8846207343:android:9e6b44e133769d3ebbe09a",
"android_client_info": {
"package_name": "com.t1r2340.spotifystats"
"package_name": "com.t1r2340.unwrappd"
}
},
"oauth_client": [],
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package com.t1r2340.spotifystats;
package com.t1r2340.unwrappd;

import android.content.Context;

Expand Down
16 changes: 9 additions & 7 deletions app/src/main/AndroidManifest.xml
Original file line number Diff line number Diff line change
Expand Up @@ -8,18 +8,23 @@
android:allowBackup="true"
android:dataExtractionRules="@xml/data_extraction_rules"
android:fullBackupContent="@xml/backup_rules"
android:icon="@mipmap/ic_launcher"
android:icon="@mipmap/unwrappd_icon"
android:label="@string/app_name"
android:roundIcon="@mipmap/ic_launcher_round"
android:roundIcon="@mipmap/unwrappd_icon_round"
android:supportsRtl="true"
android:theme="@style/Theme.SpotifyStats"
tools:targetApi="31">
<activity android:name=".PrevWrappedActivity"
android:exported="false" />
<activity
android:name=".PrevWrappedsActivity"
android:exported="false" />
<activity
android:name=".WrappedActivity"
android:exported="false" />
<activity
android:name=".FireBaseActivity"
android:exported="true">
android:name=".HomePageActivity"
android:exported="true" >
<intent-filter>
<action android:name="android.intent.action.MAIN" />

Expand All @@ -29,9 +34,6 @@
<activity
android:name=".SettingsActivity"
android:exported="false" />
<activity
android:name=".MainActivity"
android:exported="false"></activity>
</application>

</manifest>
155 changes: 0 additions & 155 deletions app/src/main/java/com/t1r2340/spotifystats/FireBaseActivity.java

This file was deleted.

72 changes: 0 additions & 72 deletions app/src/main/java/com/t1r2340/spotifystats/HomePageFragment.java

This file was deleted.

Loading

0 comments on commit eb87951

Please sign in to comment.