Skip to content

Commit a1c0a6f

Browse files
committed
first commit
0 parents  commit a1c0a6f

File tree

170 files changed

+11484
-0
lines changed

Some content is hidden

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

170 files changed

+11484
-0
lines changed

.gitignore

Lines changed: 46 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,46 @@
1+
# Miscellaneous
2+
*.class
3+
*.log
4+
*.pyc
5+
*.swp
6+
.DS_Store
7+
.atom/
8+
.buildlog/
9+
.history
10+
.svn/
11+
12+
# IntelliJ related
13+
*.iml
14+
*.ipr
15+
*.iws
16+
.idea/
17+
18+
# The .vscode folder contains launch configuration and tasks you configure in
19+
# VS Code which you may wish to be included in version control, so this line
20+
# is commented out by default.
21+
#.vscode/
22+
23+
# Flutter/Dart/Pub related
24+
**/doc/api/
25+
**/ios/Flutter/.last_build_id
26+
.dart_tool/
27+
.flutter-plugins
28+
.flutter-plugins-dependencies
29+
.packages
30+
.pub-cache/
31+
.pub/
32+
/build/
33+
34+
# Web related
35+
lib/generated_plugin_registrant.dart
36+
37+
# Symbolication related
38+
app.*.symbols
39+
40+
# Obfuscation related
41+
app.*.map.json
42+
43+
# Android Studio will place build artifacts here
44+
/android/app/debug
45+
/android/app/profile
46+
/android/app/release

.metadata

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
# This file tracks properties of this Flutter project.
2+
# Used by Flutter tool to assess capabilities and perform upgrades etc.
3+
#
4+
# This file should be version controlled and should not be manually edited.
5+
6+
version:
7+
revision: 77d935af4db863f6abd0b9c31c7e6df2a13de57b
8+
channel: stable
9+
10+
project_type: app

BackupFileName.dump

Lines changed: 2651 additions & 0 deletions
Large diffs are not rendered by default.

README.md

Lines changed: 87 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,87 @@
1+
# Musive
2+
3+
Full-stack music player app is written in flutter and dart using node.js music API. Fully Functional music player with UI like Spotify app. Added 500+ royalty-free music and information about artists. Application users can make their own playlist or collect liked songs.
4+
5+
## **Demo**
6+
7+
<p align="center">
8+
<img src="screenshots/logo.jpeg" alt="logo" width="30%"/>
9+
10+
<h3 align="center"><a href="https://github.com/Ansh-Rathod/Flutter-Projectfolio-app/releases/download/v1.0.0/app-armeabi-v7a-release.apk">Download the release APK</a></h3>
11+
</p>
12+
13+
# Features
14+
15+
- added 1000+ music, 300+ artists
16+
- Queue Management
17+
- can make a collection of liked songs.
18+
- create/delete your own playlist.
19+
- Spotify UI clone for the best experience.
20+
- notification player.
21+
- recordable list for currently playing playlist ( you can drag music to set an order for playlist).
22+
- Cache support
23+
- Song, Album, Artist, and Playlist Search
24+
- Best Streaming Quality
25+
26+
And much more
27+
<br/>
28+
29+
## **Image Gallery**
30+
31+
<hr/>
32+
33+
<br>
34+
35+
<p align="center">
36+
<img src="screenshots/1642936098449.png" alt="Gallery Image" width="30%" />
37+
<img src="screenshots/1642936111418.png" alt="Gallery Image" width="30%" />
38+
<img src="screenshots/1642936132519.png" alt="Gallery Image" width="30%" />
39+
<img src="screenshots/1642936144940.png" alt="Gallery Image" width="30%" />
40+
<img src="screenshots/1642936154266.png" alt="Gallery Image" width="30%" />
41+
<img src="screenshots/1642936174061.png" alt="Gallery Image" width="30%" />
42+
<img src="screenshots/1642936184125.png" alt="Gallery Image" width="30%" />
43+
<img src="screenshots/1642936198947.png" alt="Gallery Image" width="30%" />
44+
<img src="screenshots/1642936208745.png" alt="Gallery Image" width="30%" />
45+
46+
</p>
47+
<hr/>
48+
49+
## **Dependencies**
50+
51+
- [cupertino_icons](https://pub.dev/packages/cupertino_icons)
52+
- [http](https://pub.dev/packages/http)
53+
- [flutter_bloc](https://pub.dev/packages/flutter_bloc)
54+
- [assets_audio_player](https://pub.dev/packages/assets_audio_player)
55+
- [hive_flutter](https://pub.dev/packages/hive_flutter)
56+
- [cached_network_image](https://pub.dev/packages/cached_network_image)
57+
- [url_launcher](https://pub.dev/packages/url_launcher)
58+
- [line_icons](https://pub.dev/packages/line_icons)
59+
- [provider](https://pub.dev/packages/provider)
60+
61+
## **How to run?**
62+
63+
To clone and run this application, you'll need [Git](https://git-scm.com/downloads) and [Flutter](https://flutter.dev/docs/get-started/install) installed on your computer. From your command line:
64+
65+
### Clone this repository
66+
67+
```bash
68+
$ git clone https://github.com/Ansh-Rathod/Flutter-Musive-app.git
69+
```
70+
71+
### Go into the repository
72+
73+
```bash
74+
$ cd Flutter-Musive-app
75+
```
76+
77+
### Install dependencies
78+
79+
```bash
80+
$ flutter pub get
81+
```
82+
83+
### Run the app
84+
85+
```bash
86+
$ flutter run
87+
```

analysis_options.yaml

Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
# This file configures the analyzer, which statically analyzes Dart code to
2+
# check for errors, warnings, and lints.
3+
#
4+
# The issues identified by the analyzer are surfaced in the UI of Dart-enabled
5+
# IDEs (https://dart.dev/tools#ides-and-editors). The analyzer can also be
6+
# invoked from the command line by running `flutter analyze`.
7+
8+
# The following line activates a set of recommended lints for Flutter apps,
9+
# packages, and plugins designed to encourage good coding practices.
10+
include: package:flutter_lints/flutter.yaml
11+
12+
linter:
13+
# The lint rules applied to this project can be customized in the
14+
# section below to disable rules from the `package:flutter_lints/flutter.yaml`
15+
# included above or to enable additional rules. A list of all available lints
16+
# and their documentation is published at
17+
# https://dart-lang.github.io/linter/lints/index.html.
18+
#
19+
# Instead of disabling a lint rule for the entire project in the
20+
# section below, it can also be suppressed for a single line of code
21+
# or a specific dart file by using the `// ignore: name_of_lint` and
22+
# `// ignore_for_file: name_of_lint` syntax on the line or in the file
23+
# producing the lint.
24+
rules:
25+
# avoid_print: false # Uncomment to disable the `avoid_print` rule
26+
# prefer_single_quotes: true # Uncomment to enable the `prefer_single_quotes` rule
27+
28+
# Additional information about this file can be found at
29+
# https://dart.dev/guides/language/analysis-options

android/.gitignore

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
gradle-wrapper.jar
2+
/.gradle
3+
/captures/
4+
/gradlew
5+
/gradlew.bat
6+
/local.properties
7+
GeneratedPluginRegistrant.java
8+
9+
# Remember to never publicly share your keystore.
10+
# See https://flutter.dev/docs/deployment/android#reference-the-keystore-from-the-app
11+
key.properties
12+
**/*.keystore
13+
**/*.jks

android/app/build.gradle

Lines changed: 68 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,68 @@
1+
def localProperties = new Properties()
2+
def localPropertiesFile = rootProject.file('local.properties')
3+
if (localPropertiesFile.exists()) {
4+
localPropertiesFile.withReader('UTF-8') { reader ->
5+
localProperties.load(reader)
6+
}
7+
}
8+
9+
def flutterRoot = localProperties.getProperty('flutter.sdk')
10+
if (flutterRoot == null) {
11+
throw new GradleException("Flutter SDK not found. Define location with flutter.sdk in the local.properties file.")
12+
}
13+
14+
def flutterVersionCode = localProperties.getProperty('flutter.versionCode')
15+
if (flutterVersionCode == null) {
16+
flutterVersionCode = '1'
17+
}
18+
19+
def flutterVersionName = localProperties.getProperty('flutter.versionName')
20+
if (flutterVersionName == null) {
21+
flutterVersionName = '1.0'
22+
}
23+
24+
apply plugin: 'com.android.application'
25+
apply plugin: 'kotlin-android'
26+
apply from: "$flutterRoot/packages/flutter_tools/gradle/flutter.gradle"
27+
28+
android {
29+
compileSdkVersion flutter.compileSdkVersion
30+
31+
compileOptions {
32+
sourceCompatibility JavaVersion.VERSION_1_8
33+
targetCompatibility JavaVersion.VERSION_1_8
34+
}
35+
36+
kotlinOptions {
37+
jvmTarget = '1.8'
38+
}
39+
40+
sourceSets {
41+
main.java.srcDirs += 'src/main/kotlin'
42+
}
43+
44+
defaultConfig {
45+
// TODO: Specify your own unique Application ID (https://developer.android.com/studio/build/application-id.html).
46+
applicationId "com.example.spotify_clone"
47+
minSdkVersion flutter.minSdkVersion
48+
targetSdkVersion flutter.targetSdkVersion
49+
versionCode flutterVersionCode.toInteger()
50+
versionName flutterVersionName
51+
}
52+
53+
buildTypes {
54+
release {
55+
// TODO: Add your own signing config for the release build.
56+
// Signing with the debug keys for now, so `flutter run --release` works.
57+
signingConfig signingConfigs.debug
58+
}
59+
}
60+
}
61+
62+
flutter {
63+
source '../..'
64+
}
65+
66+
dependencies {
67+
implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk7:$kotlin_version"
68+
}
Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
2+
package="com.example.spotify_clone">
3+
<!-- Flutter needs it to communicate with the running application
4+
to allow setting breakpoints, to provide hot reload, etc.
5+
-->
6+
<uses-permission android:name="android.permission.INTERNET"/>
7+
</manifest>
Lines changed: 36 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,36 @@
1+
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
2+
package="com.example.spotify_clone">
3+
<uses-permission android:name="android.permission.INTERNET" />
4+
<application
5+
android:label="Musive"
6+
android:name="${applicationName}"
7+
android:icon="@mipmap/ic_launcher">
8+
<activity
9+
android:name=".MainActivity"
10+
android:exported="true"
11+
android:launchMode="singleTop"
12+
android:usesCleartextTraffic="true"
13+
android:theme="@style/LaunchTheme"
14+
android:configChanges="orientation|keyboardHidden|keyboard|screenSize|smallestScreenSize|locale|layoutDirection|fontScale|screenLayout|density|uiMode"
15+
android:hardwareAccelerated="true"
16+
android:windowSoftInputMode="adjustResize">
17+
<!-- Specifies an Android theme to apply to this Activity as soon as
18+
the Android process has started. This theme is visible to the user
19+
while the Flutter UI initializes. After that, this theme continues
20+
to determine the Window background behind the Flutter UI. -->
21+
<meta-data
22+
android:name="io.flutter.embedding.android.NormalTheme"
23+
android:resource="@style/NormalTheme"
24+
/>
25+
<intent-filter>
26+
<action android:name="android.intent.action.MAIN"/>
27+
<category android:name="android.intent.category.LAUNCHER"/>
28+
</intent-filter>
29+
</activity>
30+
<!-- Don't delete the meta-data below.
31+
This is used by the Flutter tool to generate GeneratedPluginRegistrant.java -->
32+
<meta-data
33+
android:name="flutterEmbedding"
34+
android:value="2" />
35+
</application>
36+
</manifest>
Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
// Generated file.
2+
// If you wish to remove Flutter's multidex support, delete this entire file.
3+
4+
package io.flutter.app;
5+
6+
import android.content.Context;
7+
import androidx.annotation.CallSuper;
8+
import androidx.multidex.MultiDex;
9+
10+
/**
11+
* Extension of {@link io.flutter.app.FlutterApplication}, adding multidex support.
12+
*/
13+
public class FlutterMultiDexApplication extends FlutterApplication {
14+
@Override
15+
@CallSuper
16+
protected void attachBaseContext(Context base) {
17+
super.attachBaseContext(base);
18+
MultiDex.install(this);
19+
}
20+
}

0 commit comments

Comments
 (0)