mirror of
https://framagit.org/tom79/nitterizeme
synced 2025-02-17 20:20:59 +01:00
Add buff.ly unshorten support
This commit is contained in:
parent
36f500759a
commit
f0cc359d27
@ -195,6 +195,31 @@
|
||||
android:mimeType="text/plain" />
|
||||
</intent-filter>
|
||||
|
||||
|
||||
<!-- buff.ly -->
|
||||
<intent-filter>
|
||||
<action android:name="android.intent.action.VIEW" />
|
||||
|
||||
<category android:name="android.intent.category.DEFAULT" />
|
||||
<category android:name="android.intent.category.BROWSABLE" />
|
||||
|
||||
<data
|
||||
android:host="buff.ly"
|
||||
android:pathPattern=".*"
|
||||
android:scheme="https" />
|
||||
<data
|
||||
android:host="buff.ly"
|
||||
android:pathPattern=".*"
|
||||
android:scheme="http" />
|
||||
</intent-filter>
|
||||
<intent-filter>
|
||||
<action android:name="android.intent.action.SEND" />
|
||||
<category android:name="android.intent.category.DEFAULT" />
|
||||
<data
|
||||
android:host="buff.ly"
|
||||
android:mimeType="text/plain" />
|
||||
</intent-filter>
|
||||
|
||||
<!-- INSTAGRAM URLs -->
|
||||
<!-- instagram.com -->
|
||||
<intent-filter>
|
||||
|
@ -88,7 +88,8 @@ public class MainActivity extends AppCompatActivity {
|
||||
"tinyurl.com",
|
||||
"goo.gl",
|
||||
"ow.ly",
|
||||
"bl.ink"
|
||||
"bl.ink",
|
||||
"buff.ly"
|
||||
};
|
||||
private AppInfoAdapter appInfoAdapter;
|
||||
private RecyclerView list_apps;
|
||||
|
2
fastlane/metadata/android/en-US/changelogs/11.txt
Normal file
2
fastlane/metadata/android/en-US/changelogs/11.txt
Normal file
@ -0,0 +1,2 @@
|
||||
Added:
|
||||
- Unshorten support for buff.ly
|
Loading…
x
Reference in New Issue
Block a user