Skip to content

Commit 89f09ec

Browse files
authored
Merge pull request #17 from fadyphil/feat/analytics-data-integration
Feat/analytics data integration
2 parents 5533be7 + 5642d8f commit 89f09ec

261 files changed

Lines changed: 6599 additions & 4486 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.gitignore

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,4 +58,5 @@ android/build/reports/problems/problems-report.html
5858
# Ignore designs and plans
5959
designs/
6060
plans/
61-
Engineering-Codex/
61+
Engineering-Codex/
62+
claude artifacts/

CHANGELOG.md

Lines changed: 33 additions & 0 deletions

LICENSE

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
MIT License
2+
3+
Copyright (c) 2026 Fady
4+
5+
Permission is hereby granted, free of charge, to any person obtaining a copy
6+
of this software and associated documentation files (the "Software"), to deal
7+
in the Software without restriction, including without limitation the rights
8+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9+
copies of the Software, and to permit persons to whom the Software is
10+
furnished to do so, subject to the following conditions:
11+
12+
The above copyright notice and this permission notice shall be included in all
13+
copies or substantial portions of the Software.
14+
15+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21+
SOFTWARE.

README.md

Lines changed: 62 additions & 58 deletions

android/app/build.gradle.kts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ plugins {
66
}
77

88
android {
9-
namespace = "com.example.music_player"
9+
namespace = "com.osserva.app"
1010
compileSdk = flutter.compileSdkVersion
1111
ndkVersion = flutter.ndkVersion
1212

@@ -21,7 +21,7 @@ android {
2121

2222
defaultConfig {
2323
// TODO: Specify your own unique Application ID (https://developer.android.com/studio/build/application-id.html).
24-
applicationId = "com.example.music_player"
24+
applicationId = "com.osserva.app"
2525
// You can update the following values to match your application needs.
2626
// For more information, see: https://flutter.dev/to/review-gradle-config.
2727
minSdk = flutter.minSdkVersion

android/app/src/main/AndroidManifest.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
<manifest xmlns:android="http://schemas.android.com/apk/res/android" xmlns:tools="http://schemas.android.com/tools">
1+
<manifest xmlns:android="http://schemas.android.com/apk/res/android" xmlns:tools="http://schemas.android.com/tools" package="com.osserva.app">
22
<!-- 1. PERMISSIONS GO HERE (Directly inside manifest, NOT inside application) -->
33
<uses-permission android:name="android.permission.INTERNET"/>
44

@@ -24,7 +24,7 @@
2424

2525
<!-- 2. THE APPLICATION TAG STARTS HERE -->
2626
<application
27-
android:label="AudioGraphy"
27+
android:label="Osserva"
2828
android:name="${applicationName}"
2929
android:icon="@mipmap/launcher_icon"
3030
android:enableOnBackInvokedCallback="true">

android/app/src/main/kotlin/com/example/music_player/MainActivity.kt renamed to android/app/src/main/kotlin/com/osserva/app/MainActivity.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
package com.example.music_player
1+
package com.osserva.app
22

33
import io.flutter.embedding.android.FlutterActivity
44
import com.ryanheise.audioservice.AudioServiceActivity
395 KB
14.5 KB
395 KB

0 commit comments

Comments
 (0)