Skip to content
This repository has been archived by the owner on Apr 15, 2024. It is now read-only.

Commit

Permalink
fixed some bugs
Browse files Browse the repository at this point in the history
  • Loading branch information
nhCoder committed Jan 7, 2020
1 parent 65e2a0a commit 1659728
Show file tree
Hide file tree
Showing 7 changed files with 18,742 additions and 6 deletions.
43 changes: 43 additions & 0 deletions YoutubeExtractor/app/build/bin/injected/AndroidManifest.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,43 @@
<?xml version="1.0" encoding="utf-8"?>
<manifest
xmlns:android="http://schemas.android.com/apk/res/android"
package="com.naveed.ytextractor"
android:versionCode="1"
android:versionName="1.0">

<uses-sdk
android:minSdkVersion="16"
android:targetSdkVersion="21"/>

<uses-permission
android:name="android.permission.INTERNET"/>

<application
android:allowBackup="true"
android:icon="@drawable/ic_launcher"
android:label="@string/app_name"
android:theme="@style/AppTheme"
android:resizeableActivity="true">

<activity
android:name=".MainActivity"
android:screenOrientation="portrait"
android:configChanges="orientation|keyboardHidden"
android:label="@string/app_name">

<intent-filter>

<action
android:name="android.intent.action.MAIN"/>

<category
android:name="android.intent.category.LAUNCHER"/>

</intent-filter>

</activity>

</application>

</manifest>

32 changes: 32 additions & 0 deletions YoutubeExtractor/app/build/bin/merged/AndroidManifest.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.naveed.ytextractor"
android:versionCode="1"
android:versionName="1.0" >

<uses-sdk
android:minSdkVersion="16"
android:targetSdkVersion="21" />

<uses-permission android:name="android.permission.INTERNET" />

<application
android:allowBackup="true"
android:icon="@drawable/ic_launcher"
android:label="@string/app_name"
android:resizeableActivity="true"
android:theme="@style/AppTheme" >
<activity
android:name="com.naveed.ytextractor.MainActivity"
android:configChanges="orientation|keyboardHidden"
android:label="@string/app_name"
android:screenOrientation="portrait" >
<intent-filter>
<action android:name="android.intent.action.MAIN" />

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

</manifest>
6,220 changes: 6,220 additions & 0 deletions YoutubeExtractor/app/build/gen/android/support/v7/appcompat/R.java

Large diffs are not rendered by default.

Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
/** Automatically generated file. DO NOT MODIFY */
package com.naveed.ytextractor;

public final class BuildConfig {
public final static boolean DEBUG = true;
}
6,220 changes: 6,220 additions & 0 deletions YoutubeExtractor/app/build/gen/com/naveed/ytextractor/R.java

Large diffs are not rendered by default.

6,220 changes: 6,220 additions & 0 deletions YoutubeExtractor/app/build/gen/com/universalvideoview/R.java

Large diffs are not rendered by default.

Original file line number Diff line number Diff line change
Expand Up @@ -176,12 +176,7 @@ private List<YTMedia> parseUrls(YTMedia[] rawMedia) {
}
}

String FinalUrl;
if (tempUrl.contains("&lsig=")) {
FinalUrl = tempUrl + "&sig=" + decodedSig;
} else {
FinalUrl = tempUrl + "&signature=" + decodedSig;
}
String FinalUrl= tempUrl + "&sig=" + decodedSig;
media.setUrl(FinalUrl);
links.add(media);

Expand Down

0 comments on commit 1659728

Please sign in to comment.