Skip to content

Commit 5fbd147

Browse files
author
Mobarok Laptop
committed
Initial Publish
1 parent 131c27b commit 5fbd147

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

43 files changed

+42
-232
lines changed

CONTRIBUTING.md

Lines changed: 0 additions & 9 deletions
This file was deleted.

README.md

Lines changed: 0 additions & 177 deletions
This file was deleted.

app/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ android {
44
namespace 'com.sample'
55
defaultConfig {
66
applicationId "com.sample"
7-
minSdkVersion 14
7+
minSdkVersion 24
88
targetSdkVersion 35
99
compileSdk 35
1010
versionCode 1

build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ buildscript {
88
maven { url 'https://jitpack.io' }
99
}
1010
dependencies {
11-
classpath 'com.android.tools.build:gradle:8.7.3'
11+
classpath 'com.android.tools.build:gradle:8.9.1'
1212

1313
// NOTE: Do not place your application dependencies here; they belong
1414
// in the individual module build.gradle files

gradle/wrapper/gradle-wrapper.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
distributionBase=GRADLE_USER_HOME
22
distributionPath=wrapper/dists
3-
distributionUrl=https\://services.gradle.org/distributions/gradle-8.9-bin.zip
3+
distributionUrl=https\://services.gradle.org/distributions/gradle-8.11.1-bin.zip
44
networkTimeout=10000
55
validateDistributionUrl=true
66
zipStoreBase=GRADLE_USER_HOME

jitpack.yml

Lines changed: 0 additions & 2 deletions
This file was deleted.

prdownloader/build.gradle

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -5,11 +5,9 @@ android {
55

66
namespace 'com.downloader'
77
defaultConfig {
8-
minSdkVersion 14
8+
minSdkVersion 24
99
targetSdkVersion 35
1010
compileSdk 35
11-
versionCode 1
12-
versionName "1.0"
1311

1412
testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
1513

@@ -39,9 +37,9 @@ android {
3937
publishing {
4038
publications {
4139
release(MavenPublication) {
42-
groupId = 'com.github.amitshekhariitbhu'
40+
groupId = 'com.github.mobarokOP'
4341
artifactId = 'PRDownloader'
44-
version = '1.0.1'
42+
version = '1.0.0'
4543

4644
afterEvaluate {
4745
from components.release

prdownloader/src/main/java/com/downloader/Constants.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
package com.downloader;
22

33
/**
4-
* Created by amitshekhar on 13/11/17.
4+
* Created by mobarok on 04/18/25.
55
*/
66

77
public final class Constants {

prdownloader/src/main/java/com/downloader/Error.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
import java.util.Map;
55

66
/**
7-
* Created by amitshekhar on 13/11/17.
7+
* Created by mobarok on 04/18/25.
88
*/
99

1010
public class Error {

prdownloader/src/main/java/com/downloader/OnCancelListener.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
package com.downloader;
22

33
/**
4-
* Created by amitshekhar on 15/11/17.
4+
* Created by mobarok on 04/18/25.
55
*/
66

77
public interface OnCancelListener {

prdownloader/src/main/java/com/downloader/OnDownloadListener.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
package com.downloader;
22

33
/**
4-
* Created by amitshekhar on 13/11/17.
4+
* Created by mobarok on 04/18/25.
55
*/
66

77
public interface OnDownloadListener {

prdownloader/src/main/java/com/downloader/OnPauseListener.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
package com.downloader;
22

33
/**
4-
* Created by amitshekhar on 13/11/17.
4+
* Created by mobarok on 04/18/25.
55
*/
66

77
public interface OnPauseListener {

prdownloader/src/main/java/com/downloader/OnProgressListener.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
package com.downloader;
22

33
/**
4-
* Created by amitshekhar on 13/11/17.
4+
* Created by mobarok on 04/18/25.
55
*/
66

77
public interface OnProgressListener {

prdownloader/src/main/java/com/downloader/OnStartOrResumeListener.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
package com.downloader;
22

33
/**
4-
* Created by amitshekhar on 15/11/17.
4+
* Created by mobarok on 04/18/25.
55
*/
66

77
public interface OnStartOrResumeListener {

prdownloader/src/main/java/com/downloader/PRDownloader.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
package com.downloader;
22

33
/**
4-
* Created by amitshekhar on 12/11/17.
4+
* Created by mobarok on 04/18/25.
55
*/
66

77
import android.content.Context;

prdownloader/src/main/java/com/downloader/PRDownloaderConfig.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
import com.downloader.httpclient.HttpClient;
55

66
/**
7-
* Created by amitshekhar on 13/11/17.
7+
* Created by mobarok on 04/18/25.
88
*/
99

1010
public class PRDownloaderConfig {

prdownloader/src/main/java/com/downloader/Priority.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
package com.downloader;
22

33
/**
4-
* Created by amitshekhar on 13/11/17.
4+
* Created by mobarok on 04/18/25.
55
*/
66

77
/**

prdownloader/src/main/java/com/downloader/Progress.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
import java.io.Serializable;
44

55
/**
6-
* Created by amitshekhar on 13/11/17.
6+
* Created by mobarok on 04/18/25.
77
*/
88

99
public class Progress implements Serializable {

prdownloader/src/main/java/com/downloader/Response.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
package com.downloader;
22

33
/**
4-
* Created by amitshekhar on 13/11/17.
4+
* Created by mobarok on 04/18/25.
55
*/
66

77
public class Response {

prdownloader/src/main/java/com/downloader/Status.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
package com.downloader;
22

33
/**
4-
* Created by amitshekhar on 15/11/17.
4+
* Created by mobarok on 04/18/25.
55
*/
66

77
public enum Status {

prdownloader/src/main/java/com/downloader/core/Core.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
package com.downloader.core;
22

33
/**
4-
* Created by amitshekhar on 13/11/17.
4+
* Created by mobarok on 04/18/25.
55
*/
66

77
public class Core {

prdownloader/src/main/java/com/downloader/core/DefaultExecutorSupplier.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
import java.util.concurrent.ThreadFactory;
88

99
/**
10-
* Created by amitshekhar on 13/11/17.
10+
* Created by mobarok on 04/18/25.
1111
*/
1212

1313
public class DefaultExecutorSupplier implements ExecutorSupplier {

prdownloader/src/main/java/com/downloader/core/DownloadExecutor.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
import java.util.concurrent.TimeUnit;
1010

1111
/**
12-
* Created by amitshekhar on 13/11/17.
12+
* Created by mobarok on 04/18/25.
1313
*/
1414

1515
public class DownloadExecutor extends ThreadPoolExecutor {

prdownloader/src/main/java/com/downloader/core/DownloadFutureTask.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
import java.util.concurrent.FutureTask;
77

88
/**
9-
* Created by amitshekhar on 13/11/17.
9+
* Created by mobarok on 04/18/25.
1010
*/
1111

1212
public class DownloadFutureTask extends FutureTask<DownloadRunnable> implements Comparable<DownloadFutureTask> {

0 commit comments

Comments
 (0)