Skip to content
This repository has been archived by the owner on Oct 28, 2023. It is now read-only.

updated dependency #240

Open
wants to merge 2 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 6 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,12 @@ repositories {
And the dependency:

```java
implementation 'com.github.HaarigerHarald:android-youtubeExtractor:master-SNAPSHOT'
implementation 'com.github.HaarigerHarald:android-youtubeExtractor:2.1.2'
```

Make this true in gradle.properties
```
android.enableJetifier=true
```

## Usage
Expand Down
6 changes: 3 additions & 3 deletions advancedDownloader/build.gradle
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
apply plugin: 'com.android.application'

android {
compileSdkVersion 28
compileSdkVersion 33

defaultConfig {
applicationId "at.huber.youtubeDownloader"
minSdkVersion 14
targetSdkVersion 22
minSdkVersion 16
targetSdkVersion 33
versionCode 5
versionName "2.1"
}
Expand Down
3 changes: 2 additions & 1 deletion advancedDownloader/src/main/AndroidManifest.xml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,8 @@
android:name=".DownloadActivity"
android:theme="@style/AppTheme"
android:excludeFromRecents="true"
android:taskAffinity="">
android:taskAffinity=""
android:exported="true">

<intent-filter>
<action android:name="android.intent.action.SEND" />
Expand Down
5 changes: 4 additions & 1 deletion build.gradle
Original file line number Diff line number Diff line change
@@ -1,12 +1,15 @@
// Top-level build file where you can add configuration options common to all sub-projects/modules.

buildscript {
ext {
agp_version = '7.3.0'
}
repositories {
google()
jcenter()
}
dependencies {
classpath 'com.android.tools.build:gradle:3.6.2'
classpath "com.android.tools.build:gradle:$agp_version"

// NOTE: Do not place your application dependencies here; they belong
// in the individual module build.gradle files
Expand Down
Binary file modified gradle/wrapper/gradle-wrapper.jar
Binary file not shown.
4 changes: 2 additions & 2 deletions gradle/wrapper/gradle-wrapper.properties
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#Sat Apr 18 21:27:46 CEST 2020
#Mon Sep 25 11:52:10 IST 2023
distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-7.4-bin.zip
zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-5.6.4-all.zip
Loading