Skip to content

Commit 1f68f36

Browse files
committed
Update commit v1.3.1
1 parent d7e2e33 commit 1f68f36

File tree

14 files changed

+20
-8
lines changed

14 files changed

+20
-8
lines changed
Binary file not shown.
Binary file not shown.
50 Bytes
Binary file not shown.
0 Bytes
Binary file not shown.
2.6 KB
Binary file not shown.
0 Bytes
Binary file not shown.
Binary file not shown.

.gradle/checksums/checksums.lock

0 Bytes
Binary file not shown.

.gradle/checksums/sha1-checksums.bin

54 Bytes
Binary file not shown.

README.md

Lines changed: 8 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,15 @@
1-
# Android-Youtube-Downloader 8+
1+
# Android-Youtube-Downloader 1.3.1
22
An Android Youtube downloader based on yt-dlp, pytube and Chaquopy.
33
You can download in mp4/m4a youtube videos/playlists. This application work for many other websites ([see yt-dlp supported website](https://github.com/yt-dlp/yt-dlp/blob/master/supportedsites.md))
44
***
55
## Compatibility
66
Compatible with android 8 and newer.
7+
[A version for linux is also available](https://github.com/acmo0/youtube-downloader-linux).
78
## Download
8-
[Download from our github repository.](https://github.com/acmo0/Android-Youtube-Downloader/releases/tag/v1.3)
9-
## Lastest release improvements v1.3
10-
11-
1. **Solve compatibility issues for android 10 and newer**
12-
2. **Solve Youtube downloading issues**
9+
[Download from our github repository.](https://github.com/acmo0/Android-Youtube-Downloader/releases/tag/v1.3.1)
10+
## Lastest release improvements v1.3.1
11+
Release from August 2022
12+
1. ** Solve bug ** (link update problem with sharing video from youtube when the app is already started)
1313

1414
## Screenshots
1515

@@ -22,4 +22,6 @@ This application does not collect any user information.
2222
3. [pytube](https://github.com/pytube/pytube) The Unlicense
2323
4. [ffmpeg-android-java](https://github.com/WritingMinds/ffmpeg-android-java) GPLv3.0
2424

25+
## Issues
26+
Please feel free to open an issue if you want some new features, find a bug,...
2527

app/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ android {
1212
minSdk 26
1313
targetSdk 31
1414
versionCode 1
15-
versionName "1.3"
15+
versionName "1.3.1"
1616

1717
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
1818
sourceSets {

app/release/output-metadata.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
"filters": [],
1313
"attributes": [],
1414
"versionCode": 1,
15-
"versionName": "1.3",
15+
"versionName": "1.3.1",
1616
"outputFile": "app-release.apk"
1717
}
1818
],

app/src/main/java/com/acmo0/youtubedownloader/MainActivity.java

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -331,7 +331,17 @@ public void onClick(DialogInterface dialogInterface, int i) {
331331
});
332332

333333
}
334+
@Override
335+
protected void onResume() {
336+
Bundle extras = getIntent().getExtras();
337+
String sharedUrl = "";
338+
if(extras!=null) {
339+
sharedUrl = extras.getString(Intent.EXTRA_TEXT);
340+
}
341+
editTextLink.setText(sharedUrl);
342+
super.onResume();
334343

344+
}
335345
@Override
336346
public void onBackPressed(){
337347
if(this.drawerLayout.isDrawerOpen(GravityCompat.START)){

0 commit comments

Comments
 (0)