first commit
This commit is contained in:
31
android/app/build.gradle
Normal file
31
android/app/build.gradle
Normal file
@ -0,0 +1,31 @@
|
||||
plugins {
|
||||
id 'com.android.application'
|
||||
}
|
||||
|
||||
android {
|
||||
compileSdkVersion 29
|
||||
buildToolsVersion "30.0.3"
|
||||
|
||||
defaultConfig {
|
||||
applicationId "it.purser.stream"
|
||||
minSdkVersion 25
|
||||
targetSdkVersion 29
|
||||
versionCode 109
|
||||
versionName "109.0"
|
||||
}
|
||||
|
||||
buildTypes {
|
||||
release {
|
||||
minifyEnabled false
|
||||
proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
|
||||
}
|
||||
}
|
||||
compileOptions {
|
||||
sourceCompatibility JavaVersion.VERSION_1_8
|
||||
targetCompatibility JavaVersion.VERSION_1_8
|
||||
}
|
||||
}
|
||||
|
||||
dependencies {
|
||||
testImplementation 'junit:junit:4.+'
|
||||
}
|
21
android/app/proguard-rules.pro
vendored
Normal file
21
android/app/proguard-rules.pro
vendored
Normal file
@ -0,0 +1,21 @@
|
||||
# Add project specific ProGuard rules here.
|
||||
# You can control the set of applied configuration files using the
|
||||
# proguardFiles setting in build.gradle.
|
||||
#
|
||||
# For more details, see
|
||||
# http://developer.android.com/guide/developing/tools/proguard.html
|
||||
|
||||
# If your project uses WebView with JS, uncomment the following
|
||||
# and specify the fully qualified class name to the JavaScript interface
|
||||
# class:
|
||||
#-keepclassmembers class fqcn.of.javascript.interface.for.webview {
|
||||
# public *;
|
||||
#}
|
||||
|
||||
# Uncomment this to preserve the line number information for
|
||||
# debugging stack traces.
|
||||
#-keepattributes SourceFile,LineNumberTable
|
||||
|
||||
# If you keep the line number information, uncomment this to
|
||||
# hide the original source file name.
|
||||
#-renamesourcefileattribute SourceFile
|
19
android/app/src/main/AndroidManifest.xml
Normal file
19
android/app/src/main/AndroidManifest.xml
Normal file
@ -0,0 +1,19 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<manifest xmlns:android="http://schemas.android.com/apk/res/android" package="it.purser.stream">
|
||||
<application
|
||||
android:allowBackup="false"
|
||||
android:fullBackupContent="false"
|
||||
android:icon="@drawable/ic_launcher"
|
||||
android:label="@string/app_name"
|
||||
android:roundIcon="@drawable/ic_launcher"
|
||||
android:supportsRtl="true"
|
||||
android:theme="@style/Theme.ProxyStream">
|
||||
<activity android:name="it.purser.stream.ShareActivity">
|
||||
<intent-filter>
|
||||
<action android:name="android.intent.action.SEND" />
|
||||
<category android:name="android.intent.category.DEFAULT" />
|
||||
<data android:mimeType="*/*" />
|
||||
</intent-filter>
|
||||
</activity>
|
||||
</application>
|
||||
</manifest>
|
BIN
android/app/src/main/ic_launcher-playstore.png
Normal file
BIN
android/app/src/main/ic_launcher-playstore.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 12 KiB |
@ -0,0 +1,69 @@
|
||||
package it.purser.stream;
|
||||
|
||||
import android.app.Activity;
|
||||
import android.content.Intent;
|
||||
import android.net.Uri;
|
||||
import android.os.Bundle;
|
||||
import java.util.TreeMap;
|
||||
import java.util.Locale;
|
||||
|
||||
public class ShareActivity extends Activity {
|
||||
private class Upstream {
|
||||
private Uri uri = null;
|
||||
private String provider = null;
|
||||
private Upstream(Uri uri, String provider) {
|
||||
this.uri = uri;
|
||||
this.provider = provider;
|
||||
}
|
||||
}
|
||||
private Upstream getSharedLink() {
|
||||
TreeMap<String,String> domains = new TreeMap<>();
|
||||
domains.put("youtu.be", "youtube");
|
||||
domains.put("youtube.com", "youtube");
|
||||
domains.put("www.youtube.com", "youtube");
|
||||
domains.put("tv.nrk.no", "nrk");
|
||||
domains.put("nx12210.your-storageshare.de", "nextcloud");
|
||||
|
||||
Intent intent = getIntent();
|
||||
Bundle bundle = intent.getExtras();
|
||||
for(String key: bundle.keySet()) {
|
||||
try {
|
||||
String txt = (String) bundle.get(key);
|
||||
Uri uri = Uri.parse(txt);
|
||||
String host = uri.getHost().toLowerCase(Locale.ROOT);
|
||||
if(domains.containsKey(host)) {
|
||||
if(host.contains("youtube.com")) {
|
||||
Uri.Builder builder = new Uri.Builder();
|
||||
builder.authority(host);
|
||||
builder.scheme("https");
|
||||
String path = uri.getQueryParameter("v");
|
||||
if(path != null) {
|
||||
builder.path(path);
|
||||
return new Upstream(builder.build(), domains.get(host));
|
||||
}
|
||||
}
|
||||
return new Upstream(uri, domains.get(host));
|
||||
}
|
||||
} catch(Exception e) {}
|
||||
}
|
||||
return null;
|
||||
}
|
||||
@Override
|
||||
protected void onCreate(Bundle savedInstanceState) {
|
||||
super.onCreate(savedInstanceState);
|
||||
Upstream upstream = getSharedLink();
|
||||
if(upstream != null) {
|
||||
Uri.Builder builder = new Uri.Builder();
|
||||
builder.authority("stream.purser.it");
|
||||
builder.scheme("https");
|
||||
builder.path(upstream.uri.getPath());
|
||||
builder.appendQueryParameter("provider", upstream.provider);
|
||||
Intent launch = new Intent(Intent.ACTION_VIEW, builder.build());
|
||||
launch.setPackage("com.android.chrome");
|
||||
launch.putExtra("android.support.customtabs.extra.SESSION", "Proxy Stream");
|
||||
launch.putExtra("android.support.customtabs.extra.TOOLBAR_COLOR", 0xff0000);
|
||||
startActivity(launch);
|
||||
}
|
||||
finish();
|
||||
}
|
||||
}
|
15
android/app/src/main/res/drawable/ic_launcher.xml
Normal file
15
android/app/src/main/res/drawable/ic_launcher.xml
Normal file
@ -0,0 +1,15 @@
|
||||
<vector xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:width="108dp"
|
||||
android:height="108dp"
|
||||
android:viewportWidth="108"
|
||||
android:viewportHeight="108">
|
||||
<group android:scaleX="1.08"
|
||||
android:scaleY="1.08">
|
||||
<path
|
||||
android:pathData="M50,50m-50,0a50,50 0,1 1,100 0a50,50 0,1 1,-100 0"
|
||||
android:fillColor="#000000"/>
|
||||
<path
|
||||
android:pathData="M30,20l0,60l55,-30z"
|
||||
android:fillColor="#32cd32"/>
|
||||
</group>
|
||||
</vector>
|
4
android/app/src/main/res/values-night/themes.xml
Normal file
4
android/app/src/main/res/values-night/themes.xml
Normal file
@ -0,0 +1,4 @@
|
||||
<resources xmlns:tools="http://schemas.android.com/tools">
|
||||
<!-- Base application theme. -->
|
||||
<style name="Theme.ProxyStream" parent="android:Theme.Black"/>
|
||||
</resources>
|
10
android/app/src/main/res/values/colors.xml
Normal file
10
android/app/src/main/res/values/colors.xml
Normal file
@ -0,0 +1,10 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<resources>
|
||||
<color name="purple_200">#FFBB86FC</color>
|
||||
<color name="purple_500">#FF6200EE</color>
|
||||
<color name="purple_700">#FF3700B3</color>
|
||||
<color name="teal_200">#FF03DAC5</color>
|
||||
<color name="teal_700">#FF018786</color>
|
||||
<color name="black">#FF000000</color>
|
||||
<color name="white">#FFFFFFFF</color>
|
||||
</resources>
|
3
android/app/src/main/res/values/strings.xml
Normal file
3
android/app/src/main/res/values/strings.xml
Normal file
@ -0,0 +1,3 @@
|
||||
<resources>
|
||||
<string name="app_name">Proxy Stream</string>
|
||||
</resources>
|
4
android/app/src/main/res/values/themes.xml
Normal file
4
android/app/src/main/res/values/themes.xml
Normal file
@ -0,0 +1,4 @@
|
||||
<resources xmlns:tools="http://schemas.android.com/tools">
|
||||
<!-- Base application theme. -->
|
||||
<style name="Theme.ProxyStream.Default" parent="android:Theme.Black"/>
|
||||
</resources>
|
@ -0,0 +1,17 @@
|
||||
package it.purser.stream;
|
||||
|
||||
import org.junit.Test;
|
||||
|
||||
import static org.junit.Assert.*;
|
||||
|
||||
/**
|
||||
* Example local unit test, which will execute on the development machine (host).
|
||||
*
|
||||
* @see <a href="http://d.android.com/tools/testing">Testing documentation</a>
|
||||
*/
|
||||
public class ExampleUnitTest {
|
||||
@Test
|
||||
public void addition_isCorrect() {
|
||||
assertEquals(4, 2 + 2);
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user