Skip to content

Commit

Permalink
Merge pull request #10 from tobexyz/ui
Browse files Browse the repository at this point in the history
issue #5 #7 #8
  • Loading branch information
tobexyz committed Dec 29, 2018
2 parents 684cad8 + 1540cc2 commit 842fcc2
Show file tree
Hide file tree
Showing 71 changed files with 1,198 additions and 560 deletions.
70 changes: 31 additions & 39 deletions yaacc/AndroidManifest.xml
Expand Up @@ -16,35 +16,32 @@
* along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
-->

<manifest xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
package="de.yaacc"
android:versionCode="23"
android:versionName="2.0.3-SNAPSHOT">


android:versionName="2.1.0-SNAPSHOT">

<uses-permission android:name="android.permission.INTERNET" />
<uses-permission android:name="android.permission.ACCESS_WIFI_STATE" />
<uses-permission android:name="android.permission.CHANGE_WIFI_MULTICAST_STATE" />
<uses-permission android:name="android.permission.CHANGE_WIFI_STATE" />
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />
<uses-permission android:name="android.permission.GET_TASKS" />
<uses-permission android:name="android.permission.RECEIVE_BOOT_COMPLETED" />
<uses-permission android:name="android.permission.WAKE_LOCK" />
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
<uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE" />



<application
android:name=".Yaacc"
android:allowBackup="false"
android:icon="@drawable/ic_launcher"
android:supportsRtl="true"
android:label="@string/app_name"
android:supportsRtl="true"
android:theme="@style/AppTheme">
<activity
android:name="de.yaacc.browser.ServerListActivity"
android:name=".browser.ServerListActivity"
android:label="@string/title_activity_server_list">
<intent-filter>
<action android:name="android.intent.action.VIEW" />
Expand All @@ -54,7 +51,7 @@
</intent-filter>
</activity>
<activity
android:name="de.yaacc.browser.ContentListActivity"
android:name=".browser.ContentListActivity"
android:label="@string/title_activity_content_list">
<intent-filter>
<action android:name="android.intent.action.VIEW" />
Expand All @@ -64,7 +61,7 @@
</intent-filter>
</activity>
<activity
android:name="de.yaacc.browser.ReceiverListActivity"
android:name=".browser.ReceiverListActivity"
android:label="@string/title_activity_receiver_list">
<intent-filter>
<action android:name="android.intent.action.VIEW" />
Expand All @@ -74,7 +71,7 @@
</intent-filter>
</activity>
<activity
android:name="de.yaacc.browser.PlayerListActivity"
android:name=".browser.PlayerListActivity"
android:label="@string/title_activity_player_list">
<intent-filter>
<action android:name="android.intent.action.VIEW" />
Expand All @@ -84,28 +81,29 @@
</intent-filter>
</activity>
<activity
android:name="de.yaacc.browser.TabBrowserActivity"
android:name=".browser.TabBrowserActivity"
android:label="@string/title_activity_main">
<intent-filter>
<action android:name="android.intent.action.VIEW" />
<action android:name="android.intent.action.MAIN" />

<category android:name="android.intent.category.DEFAULT" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>

<service
android:name="de.yaacc.upnp.UpnpRegistryService"
android:name=".upnp.UpnpRegistryService"
android:enabled="true" />
<service
android:name="de.yaacc.musicplayer.BackgroundMusicService"
android:name=".musicplayer.BackgroundMusicService"
android:enabled="true" />
<service
android:name="de.yaacc.upnp.server.YaaccUpnpServerService"
android:name=".upnp.server.YaaccUpnpServerService"
android:enabled="true" />

<activity
android:name="de.yaacc.imageviewer.ImageViewerActivity"
android:name=".imageviewer.ImageViewerActivity"
android:label="@string/title_activity_image_viewer">
<intent-filter tools:ignore="AppLinkUrlError">
<action android:name="android.intent.action.VIEW" />
Expand All @@ -117,19 +115,12 @@
</intent-filter>
</activity>
<activity
android:name="de.yaacc.settings.SettingsActivity"
android:label="@string/title_activity_settings">
<!--intent-filter>
<action android:name="android.intent.action.VIEW" />
<category android:name="android.intent.category.DEFAULT" />
</intent-filter-->
</activity>

<receiver android:name="de.yaacc.imageviewer.ImageViewerBroadcastReceiver"></receiver>
android:name=".settings.SettingsActivity"
android:label="@string/title_activity_settings" />

<receiver android:name=".imageviewer.ImageViewerBroadcastReceiver" />
<receiver
android:name="de.yaacc.upnp.server.ServerAutostart"
android:name=".upnp.server.ServerAutostart"
android:enabled="true"
android:exported="true"
android:label="YAACC ServerAutoStart">
Expand All @@ -139,69 +130,70 @@
</receiver>

<activity
android:name="de.yaacc.player.MusicPlayerActivity"
android:name=".player.MusicPlayerActivity"
android:label="@string/title_activity_music_player">
<intent-filter>
<action android:name="android.intent.action.VIEW" />

<category android:name="android.intent.category.DEFAULT" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
<activity
android:name="de.yaacc.player.ThirdPartieMusicPlayerActivity"
android:name=".player.ThirdPartieMusicPlayerActivity"
android:label="@string/title_activity_music_player">
<intent-filter>
<action android:name="android.intent.action.VIEW" />

<category android:name="android.intent.category.DEFAULT" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
<activity
android:name="de.yaacc.player.AVTransportPlayerActivity"
android:name=".player.AVTransportPlayerActivity"
android:label="@string/title_activity_avtransport_player">
<intent-filter>
<action android:name="android.intent.action.VIEW" />

<category android:name="android.intent.category.DEFAULT" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
<activity
android:name="de.yaacc.player.MultiContentPlayerActivity"
android:name=".player.MultiContentPlayerActivity"
android:label="@string/title_activity_multi_content_player">
<intent-filter>
<action android:name="android.intent.action.VIEW" />

<category android:name="android.intent.category.DEFAULT" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
<activity
android:name="de.yaacc.util.AboutActivity"
android:name=".util.AboutActivity"
android:label="@string/yaacc_about">
<intent-filter>
<action android:name="android.intent.action.VIEW" />
<category android:name="android.intent.category.DEFAULT" />
</intent-filter>
</activity>
<activity
android:name="de.yaacc.upnp.server.YaaccUpnpServerControlActivity"
android:name=".upnp.server.YaaccUpnpServerControlActivity"
android:label="@string/title_activity_yaacc_upnp_server_control">
<intent-filter>
<action android:name="android.intent.action.VIEW" />
<category android:name="android.intent.category.DEFAULT" />
</intent-filter>
</activity>
<activity
android:name="de.yaacc.util.YaaccLogActivity"
android:name=".util.YaaccLogActivity"
android:label="@string/title_activity_yaacc_log">
<intent-filter>
<action android:name="android.intent.action.VIEW" />
<category android:name="android.intent.category.DEFAULT" />
</intent-filter>
</activity>

<service
android:name=".player.PlayerService"
android:enabled="true"
android:exported="false" />
</application>

</manifest>
</manifest>
1 change: 0 additions & 1 deletion yaacc/build.gradle
Expand Up @@ -2,7 +2,6 @@ buildscript {

dependencies {
classpath 'com.android.tools.build:gradle:3.2.1'

}
}

Expand Down
Binary file added yaacc/ic_launcher-web.png
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
31 changes: 16 additions & 15 deletions yaacc/lint.xml
@@ -1,18 +1,19 @@
<?xml version="1.0" encoding="UTF-8"?>
<lint>
<issue id="OldTargetApi" severity="ignore" />
<issue id="InvalidPackage" severity="ignore" />
<issue id="GradleDependency" severity="ignore" />
<issue id="TrustAllX509TrustManager" severity="ignore" />
<issue id="UnusedResources" severity="ignore" />
<issue id="UselessParent" severity="ignore" />
<issue id="IconColors" severity="ignore" />
<issue id="IconDipSize" severity="ignore" />
<issue id="IconDuplicatesConfig" severity="ignore" />
<issue id="AlwaysShowAction" severity="ignore" />
<issue id="ClickableViewAccessibility" severity="ignore" />
<issue id="IconLocation" severity="ignore" />
<issue id="IconDensities" severity="ignore" />
<issue id="SetTextI18n" severity="ignore" />
<issue id="StaticFieldLeak" severity="ignore"/>
<issue id="OldTargetApi" severity="ignore" />
<issue id="InvalidPackage" severity="ignore" />
<issue id="GradleDependency" severity="ignore" />
<issue id="SimpleDateFormat" severity="ignore" />
<issue id="TrustAllX509TrustManager" severity="ignore" />
<issue id="StaticFieldLeak" severity="ignore"/>
<issue id="UseSparseArrays" severity="ignore"/>
<issue id="UnusedResources" severity="ignore" />
<issue id="UselessParent" severity="ignore" />
<issue id="IconDipSize" severity="ignore" />
<issue id="IconDuplicatesConfig" severity="ignore" />
<issue id="IconLocation" severity="ignore" />
<issue id="IconDensities" severity="ignore" />
<issue id="AlwaysShowAction" severity="ignore" />
<issue id="ClickableViewAccessibility" severity="ignore" />
<issue id="SetTextI18n" severity="ignore" />
</lint>
Binary file modified yaacc/res/drawable-hdpi/ic_launcher.png
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified yaacc/res/drawable-mdpi/ic_launcher.png
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified yaacc/res/drawable-xhdpi/ic_launcher.png
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified yaacc/res/drawable-xxhdpi/ic_launcher.png
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified yaacc/res/drawable-xxxhdpi/ic_launcher.png
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added yaacc/res/drawable/yaacc78x78_32.png
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.

0 comments on commit 842fcc2

Please sign in to comment.