Implemented Icarus, can play songs from the Icarus server, and implemented a local SQLite database. #49, #15, #16

This commit is contained in:
amazing-username
2019-05-27 21:10:58 -04:00
parent 1962979271
commit 7a4b8cbafb
11 changed files with 8643 additions and 3416 deletions
@@ -1,5 +1,9 @@
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android" android:versionCode="1" android:versionName="1.0" package="com.companyname.Mear">
<uses-sdk android:minSdkVersion="21" android:targetSdkVersion="27" />
<application android:label="Mear.Android"></application>
</manifest>
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android" android:versionCode="1" android:versionName="1.0" package="com.companyname.Mear" android:installLocation="auto">
<uses-sdk android:minSdkVersion="23" android:targetSdkVersion="28" />
<uses-permission android:name="android.permission.INTERNET" />
<uses-permission android:name="android.permission.ACCESS_WIFI_STATE" />
<uses-permission android:name="android.permission.WAKE_LOCK" />
<uses-permission android:name="android.permission.INSTANT_APP_FOREGROUND_SERVICE" />
<application android:label="Mear.Android"></application>
</manifest>