list = new ArrayList<>(array.length());
34 | for (int i = 0; i < array.length(); i++) list.add(new SearchResult(array.getJSONObject(i)));
35 | return list;
36 | }
37 | }
38 |
--------------------------------------------------------------------------------
/app/src/main/java/com/gianlu/aria2app/api/search/Torrent.java:
--------------------------------------------------------------------------------
1 | package com.gianlu.aria2app.api.search;
2 |
3 | import com.gianlu.commonutils.CommonUtils;
4 |
5 | import org.json.JSONException;
6 | import org.json.JSONObject;
7 |
8 | public class Torrent {
9 | public final String engineId;
10 | public final String title;
11 | public final String magnet;
12 | public final String torrentFileUrl;
13 | public final long size;
14 | public final int seeders;
15 | public final int leeches;
16 |
17 | public Torrent(JSONObject obj) throws JSONException {
18 | engineId = obj.getString("engine");
19 | title = obj.getString("title");
20 | magnet = obj.getString("magnet");
21 | torrentFileUrl = CommonUtils.optString(obj, "torrent");
22 | size = obj.getLong("size");
23 | seeders = obj.getInt("seeders");
24 | leeches = obj.getInt("leeches");
25 | }
26 | }
27 |
--------------------------------------------------------------------------------
/app/src/main/java/com/gianlu/aria2app/api/updater/Receiver.java:
--------------------------------------------------------------------------------
1 | package com.gianlu.aria2app.api.updater;
2 |
3 | import com.gianlu.aria2app.api.aria2.Aria2Helper;
4 |
5 | import androidx.annotation.NonNull;
6 |
7 | public interface Receiver {
8 | void onUpdateUi(@NonNull P payload);
9 |
10 | void onLoad(@NonNull P payload);
11 |
12 | /**
13 | * @see PayloadUpdater.OnPayload#onException(Exception)
14 | */
15 | boolean onCouldntLoad(@NonNull Exception ex);
16 |
17 | /**
18 | * @see PayloadUpdater.OnPayload#onException(Exception)
19 | */
20 | boolean onUpdateException(@NonNull Exception ex);
21 |
22 | @NonNull
23 | Wants
wants();
24 |
25 | @NonNull
26 | PayloadProvider
requireProvider() throws Aria2Helper.InitializingException;
27 | }
28 |
29 |
--------------------------------------------------------------------------------
/app/src/main/java/com/gianlu/aria2app/api/updater/ReceiverOwner.java:
--------------------------------------------------------------------------------
1 | package com.gianlu.aria2app.api.updater;
2 |
3 | import androidx.annotation.NonNull;
4 |
5 | public interface ReceiverOwner {
6 | @NonNull
7 | String toString();
8 | }
9 |
--------------------------------------------------------------------------------
/app/src/main/java/com/gianlu/aria2app/inappdownloader/Aria2ConfigProvider.java:
--------------------------------------------------------------------------------
1 | package com.gianlu.aria2app.inappdownloader;
2 |
3 | import android.app.Activity;
4 |
5 | import androidx.annotation.Keep;
6 | import androidx.annotation.NonNull;
7 |
8 | import com.gianlu.aria2app.LoadingActivity;
9 | import com.gianlu.aria2app.R;
10 | import com.gianlu.aria2lib.BareConfigProvider;
11 |
12 | @Keep
13 | public final class Aria2ConfigProvider implements BareConfigProvider {
14 |
15 | public Aria2ConfigProvider() {
16 | }
17 |
18 | @Override
19 | public int launcherIcon() {
20 | return R.mipmap.ic_launcher_round;
21 | }
22 |
23 | @Override
24 | public int notificationIcon() {
25 | return R.drawable.ic_aria2_notification;
26 | }
27 |
28 | @NonNull
29 | @Override
30 | public Class extends Activity> actionClass() {
31 | return LoadingActivity.class;
32 | }
33 | }
34 |
--------------------------------------------------------------------------------
/app/src/main/java/com/gianlu/aria2app/main/DrawerItem.java:
--------------------------------------------------------------------------------
1 | package com.gianlu.aria2app.main;
2 |
3 | public enum DrawerItem {
4 | HOME, DIRECT_DOWNLOAD, QUICK_OPTIONS, GLOBAL_OPTIONS,
5 | PREFERENCES, SUPPORT, ABOUT_ARIA2, ADD_PROFILE
6 | }
7 |
--------------------------------------------------------------------------------
/app/src/main/java/com/gianlu/aria2app/main/HideSecondSpace.java:
--------------------------------------------------------------------------------
1 | package com.gianlu.aria2app.main;
2 |
3 | public interface HideSecondSpace {
4 | void hideSecondSpace();
5 | }
6 |
--------------------------------------------------------------------------------
/app/src/main/java/com/gianlu/aria2app/main/MainProvider.java:
--------------------------------------------------------------------------------
1 | package com.gianlu.aria2app.main;
2 |
3 | import android.content.Context;
4 |
5 | import com.gianlu.aria2app.api.AbstractClient;
6 | import com.gianlu.aria2app.api.aria2.Aria2Helper;
7 | import com.gianlu.aria2app.api.aria2.DownloadsAndGlobalStats;
8 | import com.gianlu.aria2app.api.updater.PayloadProvider;
9 | import com.gianlu.aria2app.api.updater.PayloadUpdater;
10 | import com.gianlu.aria2app.api.updater.Wants;
11 |
12 | import androidx.annotation.NonNull;
13 |
14 | class MainProvider extends PayloadProvider {
15 |
16 | MainProvider(Context context) throws Aria2Helper.InitializingException {
17 | super(context.getApplicationContext(), Wants.downloadsAndStats());
18 | }
19 |
20 | @NonNull
21 | @Override
22 | protected PayloadUpdater requireUpdater(@NonNull Context context) throws Aria2Helper.InitializingException {
23 | return new Updater(context);
24 | }
25 |
26 | private class Updater extends PayloadUpdater implements AbstractClient.OnResult {
27 | Updater(Context context) throws Aria2Helper.InitializingException {
28 | super(context.getApplicationContext(), MainProvider.this);
29 | }
30 |
31 | @Override
32 | public void loop() {
33 | helper.tellAllAndGlobalStats(this);
34 | }
35 |
36 | @Override
37 | public void onResult(@NonNull DownloadsAndGlobalStats result) {
38 | hasResult(result);
39 | }
40 |
41 | @Override
42 | public void onException(@NonNull Exception ex) {
43 | errorOccurred(ex);
44 | }
45 | }
46 | }
47 |
--------------------------------------------------------------------------------
/app/src/main/java/com/gianlu/aria2app/services/BootCompletedReceiver.java:
--------------------------------------------------------------------------------
1 | package com.gianlu.aria2app.services;
2 |
3 | import android.content.BroadcastReceiver;
4 | import android.content.Context;
5 | import android.content.Intent;
6 |
7 | import com.gianlu.aria2app.PK;
8 | import com.gianlu.aria2app.ThisApplication;
9 | import com.gianlu.commonutils.preferences.Prefs;
10 |
11 | import java.util.Objects;
12 |
13 | public class BootCompletedReceiver extends BroadcastReceiver {
14 |
15 | @Override
16 | public void onReceive(Context context, Intent intent) {
17 | if (Objects.equals(intent.getAction(), Intent.ACTION_BOOT_COMPLETED)) {
18 | if (Prefs.getBoolean(PK.A2_NOTIFS_AT_BOOT))
19 | NotificationService.start(context);
20 |
21 | if (Prefs.getBoolean(PK.IN_APP_DOWNLOADER_AT_BOOT))
22 | ((ThisApplication) context.getApplicationContext()).startAria2ServiceFromReceiver();
23 | }
24 | }
25 | }
26 |
--------------------------------------------------------------------------------
/app/src/main/java/com/gianlu/aria2app/services/ProfileChooserService.java:
--------------------------------------------------------------------------------
1 | package com.gianlu.aria2app.services;
2 |
3 | import android.content.ComponentName;
4 | import android.content.IntentFilter;
5 | import android.os.Build;
6 | import android.service.chooser.ChooserTarget;
7 | import android.service.chooser.ChooserTargetService;
8 |
9 | import androidx.annotation.RequiresApi;
10 |
11 | import com.gianlu.aria2app.profiles.ChooserTargetsCache;
12 | import com.gianlu.aria2app.profiles.MultiProfile;
13 | import com.gianlu.aria2app.profiles.ProfilesManager;
14 | import com.gianlu.commonutils.lettersicon.DrawingHelper;
15 |
16 | import java.util.ArrayList;
17 | import java.util.List;
18 |
19 | @RequiresApi(api = Build.VERSION_CODES.M)
20 | public class ProfileChooserService extends ChooserTargetService {
21 | @Override
22 | public List onGetChooserTargets(ComponentName targetActivityName, IntentFilter matchedFilter) {
23 | DrawingHelper helper = new DrawingHelper(this);
24 | List profiles = ProfilesManager.get(this).getProfiles();
25 | List targets = new ArrayList<>();
26 | ChooserTargetsCache cache = ChooserTargetsCache.get();
27 | for (MultiProfile profile : profiles)
28 | targets.add(cache.getOrGenerate(profile, helper, targetActivityName));
29 | return targets;
30 | }
31 | }
32 |
--------------------------------------------------------------------------------
/app/src/main/java/com/gianlu/aria2app/tutorial/Discovery.java:
--------------------------------------------------------------------------------
1 | package com.gianlu.aria2app.tutorial;
2 |
3 | import androidx.annotation.NonNull;
4 |
5 | import com.gianlu.commonutils.tutorial.BaseTutorial;
6 | import com.gianlu.commonutils.tutorial.TutorialManager;
7 |
8 | public enum Discovery implements TutorialManager.Discovery {
9 | DOWNLOADS_TOOLBAR(DownloadsToolbarTutorial.class),
10 | DOWNLOADS_CARDS(DownloadCardsTutorial.class),
11 | FOLDERS(FoldersTutorial.class),
12 | FILES(FilesTutorial.class),
13 | PEERS_SERVERS(PeersServersTutorial.class);
14 |
15 | private final Class extends BaseTutorial> tutorialClass;
16 |
17 | Discovery(@NonNull Class extends BaseTutorial> tutorialClass) {
18 | this.tutorialClass = tutorialClass;
19 | }
20 |
21 | @NonNull
22 | @Override
23 | public Class extends BaseTutorial> tutorialClass() {
24 | return tutorialClass;
25 | }
26 | }
27 |
--------------------------------------------------------------------------------
/app/src/main/java/com/gianlu/aria2app/tutorial/DownloadsToolbarTutorial.java:
--------------------------------------------------------------------------------
1 | package com.gianlu.aria2app.tutorial;
2 |
3 | import androidx.annotation.Keep;
4 | import androidx.annotation.NonNull;
5 | import androidx.appcompat.widget.Toolbar;
6 |
7 | import com.gianlu.aria2app.adapters.DownloadCardsAdapter;
8 | import com.gianlu.aria2app.R;
9 | import com.gianlu.commonutils.tutorial.BaseTutorial;
10 |
11 | import me.toptas.fancyshowcase.FocusShape;
12 |
13 | public final class DownloadsToolbarTutorial extends BaseTutorial {
14 |
15 | @Keep
16 | public DownloadsToolbarTutorial() {
17 | super(Discovery.DOWNLOADS_TOOLBAR);
18 | }
19 |
20 | public final boolean canShow(Toolbar toolbar, DownloadCardsAdapter adapter) {
21 | return toolbar != null && adapter != null && adapter.getItemCount() >= 5;
22 | }
23 |
24 | public final void buildSequence(@NonNull Toolbar toolbar) {
25 | if (toolbar.findViewById(R.id.main_search) != null)
26 | add(forToolbarMenuItem(toolbar, R.id.main_search, R.string.tutorial_search)
27 | .fitSystemWindows(true)
28 | .enableAutoTextPosition()
29 | .focusShape(FocusShape.CIRCLE));
30 |
31 | if (toolbar.findViewById(R.id.main_filter) != null)
32 | add(forToolbarMenuItem(toolbar, R.id.main_filter, R.string.tutorial_filters)
33 | .fitSystemWindows(true)
34 | .enableAutoTextPosition()
35 | .focusShape(FocusShape.CIRCLE));
36 | }
37 | }
38 |
--------------------------------------------------------------------------------
/app/src/main/java/com/gianlu/aria2app/tutorial/FilesTutorial.java:
--------------------------------------------------------------------------------
1 | package com.gianlu.aria2app.tutorial;
2 |
3 | import androidx.annotation.Keep;
4 | import androidx.annotation.NonNull;
5 | import androidx.annotation.Nullable;
6 | import androidx.fragment.app.Fragment;
7 | import androidx.recyclerview.widget.RecyclerView;
8 |
9 | import com.gianlu.aria2app.activities.moreabout.files.FilesAdapter;
10 | import com.gianlu.aria2app.api.aria2.AriaDirectory;
11 | import com.gianlu.aria2app.R;
12 | import com.gianlu.commonutils.CommonUtils;
13 | import com.gianlu.commonutils.tutorial.BaseTutorial;
14 |
15 | import me.toptas.fancyshowcase.FocusShape;
16 |
17 | public final class FilesTutorial extends BaseTutorial {
18 |
19 | @Keep
20 | public FilesTutorial() {
21 | super(Discovery.FILES);
22 | }
23 |
24 | public final boolean buildSequence(@NonNull RecyclerView list, @Nullable AriaDirectory dir) {
25 | int firstFile = dir == null ? 0 : dir.dirs.size();
26 | RecyclerView.ViewHolder holder = list.findViewHolderForLayoutPosition(firstFile);
27 | if (holder != null) {
28 | list.scrollToPosition(firstFile);
29 |
30 | add(forView(holder.itemView, R.string.tutorial_fileDetails)
31 | .enableAutoTextPosition()
32 | .roundRectRadius(8)
33 | .focusShape(FocusShape.ROUNDED_RECTANGLE));
34 | return true;
35 | }
36 |
37 | return false;
38 | }
39 |
40 | public final boolean canShow(Fragment fragment, FilesAdapter adapter) {
41 | return fragment != null && CommonUtils.isVisible(fragment) && adapter != null && adapter.getCurrentDir() != null && adapter.getCurrentDir().files.size() >= 1;
42 | }
43 | }
44 |
--------------------------------------------------------------------------------
/app/src/main/java/com/gianlu/aria2app/tutorial/FoldersTutorial.java:
--------------------------------------------------------------------------------
1 | package com.gianlu.aria2app.tutorial;
2 |
3 | import androidx.annotation.Keep;
4 | import androidx.annotation.NonNull;
5 | import androidx.fragment.app.Fragment;
6 | import androidx.recyclerview.widget.RecyclerView;
7 |
8 | import com.gianlu.aria2app.activities.moreabout.files.FilesAdapter;
9 | import com.gianlu.aria2app.R;
10 | import com.gianlu.commonutils.CommonUtils;
11 | import com.gianlu.commonutils.tutorial.BaseTutorial;
12 |
13 | import me.toptas.fancyshowcase.FocusShape;
14 |
15 | public final class FoldersTutorial extends BaseTutorial {
16 |
17 | @Keep
18 | public FoldersTutorial() {
19 | super(Discovery.FOLDERS);
20 | }
21 |
22 | public final boolean buildSequence(@NonNull RecyclerView list) {
23 | RecyclerView.ViewHolder holder = list.findViewHolderForLayoutPosition(0);
24 | if (holder != null) {
25 | list.scrollToPosition(0);
26 |
27 | add(forView(holder.itemView, R.string.tutorial_folderDetails)
28 | .enableAutoTextPosition()
29 | .roundRectRadius(8)
30 | .focusShape(FocusShape.ROUNDED_RECTANGLE));
31 | return true;
32 | }
33 |
34 | return false;
35 | }
36 |
37 | public final boolean canShow(Fragment fragment, FilesAdapter adapter) {
38 | return fragment != null && CommonUtils.isVisible(fragment) && adapter != null && adapter.getCurrentDir() != null && adapter.getCurrentDir().dirs.size() >= 1;
39 | }
40 | }
41 |
--------------------------------------------------------------------------------
/app/src/main/play/contact-email.txt:
--------------------------------------------------------------------------------
1 | altomanigianluca@gmail.com
--------------------------------------------------------------------------------
/app/src/main/play/contact-website.txt:
--------------------------------------------------------------------------------
1 | https://gianlu.xyz
--------------------------------------------------------------------------------
/app/src/main/play/default-language.txt:
--------------------------------------------------------------------------------
1 | en-GB
--------------------------------------------------------------------------------
/app/src/main/play/listings/cs-CZ/full-description.txt:
--------------------------------------------------------------------------------
1 | Aria2App is your portable server-grade download manager backed by aria2 directly on your device. You can also manage aria2 instances running on external devices thanks to the JSON-RPC interface.
2 |
3 | Some of the features are:
4 | - Handle more servers simultaneously
5 | - Add HTTP(s), (s)FTP, BitTorrent, Metalink downloads
6 | - Add Torrents with the integrated search engine
7 | - Start downloads by clicking on links on the browser
8 | - Handle downloads (pause, resume, stop)
9 | - Find basic and in-depth information
10 | - View statistics about peers and server of your downloads
11 | - Display the information about every file in download
12 | - Download files from the server to your device through DirectDownload
13 | - Change a single download or aria2 general options
14 | - Receive live notifications of your downloads or your selected downloads
15 | And even more
16 |
17 | This project is open source at https://github.com/devgianlu/Aria2App
18 | ---------------------------------------
19 |
20 | aria2 is developed by Tatsuhiro Tsujikawa (https://github.com/tatsuhiro-t).
21 | BitTorrent is a registered trademark by BitTorrent Inc.
22 |
--------------------------------------------------------------------------------
/app/src/main/play/listings/cs-CZ/short-description.txt:
--------------------------------------------------------------------------------
1 | An advanced download manager and aria2 client for your pocket.
--------------------------------------------------------------------------------
/app/src/main/play/listings/da-DK/full-description.txt:
--------------------------------------------------------------------------------
1 | Aria2App is your portable server-grade download manager backed by aria2 directly on your device. You can also manage aria2 instances running on external devices thanks to the JSON-RPC interface.
2 |
3 | Some of the features are:
4 | - Handle more servers simultaneously
5 | - Add HTTP(s), (s)FTP, BitTorrent, Metalink downloads
6 | - Add Torrents with the integrated search engine
7 | - Start downloads by clicking on links on the browser
8 | - Handle downloads (pause, resume, stop)
9 | - Find basic and in-depth information
10 | - View statistics about peers and server of your downloads
11 | - Display the information about every file in download
12 | - Download files from the server to your device through DirectDownload
13 | - Change a single download or aria2 general options
14 | - Receive live notifications of your downloads or your selected downloads
15 | And even more
16 |
17 | This project is open source at https://github.com/devgianlu/Aria2App
18 | ---------------------------------------
19 |
20 | aria2 is developed by Tatsuhiro Tsujikawa (https://github.com/tatsuhiro-t).
21 | BitTorrent is a registered trademark by BitTorrent Inc.
22 |
--------------------------------------------------------------------------------
/app/src/main/play/listings/da-DK/short-description.txt:
--------------------------------------------------------------------------------
1 | An advanced download manager and aria2 client for your pocket.
--------------------------------------------------------------------------------
/app/src/main/play/listings/de-DE/full-description.txt:
--------------------------------------------------------------------------------
1 | Aria2App is your portable server-grade download manager backed by aria2 directly on your device. You can also manage aria2 instances running on external devices thanks to the JSON-RPC interface.
2 |
3 | Some of the features are:
4 | - Handle more servers simultaneously
5 | - Add HTTP(s), (s)FTP, BitTorrent, Metalink downloads
6 | - Add Torrents with the integrated search engine
7 | - Start downloads by clicking on links on the browser
8 | - Handle downloads (pause, resume, stop)
9 | - Find basic and in-depth information
10 | - View statistics about peers and server of your downloads
11 | - Display the information about every file in download
12 | - Download files from the server to your device through DirectDownload
13 | - Change a single download or aria2 general options
14 | - Receive live notifications of your downloads or your selected downloads
15 | And even more
16 |
17 | This project is open source at https://github.com/devgianlu/Aria2App
18 | ---------------------------------------
19 |
20 | aria2 is developed by Tatsuhiro Tsujikawa (https://github.com/tatsuhiro-t).
21 | BitTorrent is a registered trademark by BitTorrent Inc.
22 |
--------------------------------------------------------------------------------
/app/src/main/play/listings/de-DE/short-description.txt:
--------------------------------------------------------------------------------
1 | An advanced download manager and aria2 client for your pocket.
--------------------------------------------------------------------------------
/app/src/main/play/listings/el-GR/full-description.txt:
--------------------------------------------------------------------------------
1 | Aria2App is your portable server-grade download manager backed by aria2 directly on your device. You can also manage aria2 instances running on external devices thanks to the JSON-RPC interface.
2 |
3 | Some of the features are:
4 | - Handle more servers simultaneously
5 | - Add HTTP(s), (s)FTP, BitTorrent, Metalink downloads
6 | - Add Torrents with the integrated search engine
7 | - Start downloads by clicking on links on the browser
8 | - Handle downloads (pause, resume, stop)
9 | - Find basic and in-depth information
10 | - View statistics about peers and server of your downloads
11 | - Display the information about every file in download
12 | - Download files from the server to your device through DirectDownload
13 | - Change a single download or aria2 general options
14 | - Receive live notifications of your downloads or your selected downloads
15 | And even more
16 |
17 | This project is open source at https://github.com/devgianlu/Aria2App
18 | ---------------------------------------
19 |
20 | aria2 is developed by Tatsuhiro Tsujikawa (https://github.com/tatsuhiro-t).
21 | BitTorrent is a registered trademark by BitTorrent Inc.
22 |
--------------------------------------------------------------------------------
/app/src/main/play/listings/el-GR/short-description.txt:
--------------------------------------------------------------------------------
1 | An advanced download manager and aria2 client for your pocket.
--------------------------------------------------------------------------------
/app/src/main/play/listings/en-GB/full-description.txt:
--------------------------------------------------------------------------------
1 | Aria2App is your portable server-grade download manager backed by aria2 directly on your device. You can also manage aria2 instances running on external devices thanks to the JSON-RPC interface.
2 |
3 | Some of the features are:
4 | - Handle more servers simultaneously
5 | - Add HTTP(s), (s)FTP, BitTorrent, Metalink downloads
6 | - Add Torrents with the integrated search engine
7 | - Start downloads by clicking on links on the browser
8 | - Handle downloads (pause, resume, stop)
9 | - Find basic and in-depth information
10 | - View statistics about peers and server of your downloads
11 | - Display the information about every file in download
12 | - Download files from the server to your device through DirectDownload
13 | - Change a single download or aria2 general options
14 | - Receive live notifications of your downloads or your selected downloads
15 | And even more
16 |
17 | This project is open source at https://github.com/devgianlu/Aria2App
18 | ---------------------------------------
19 |
20 | aria2 is developed by Tatsuhiro Tsujikawa (https://github.com/tatsuhiro-t).
21 | BitTorrent is a registered trademark by BitTorrent Inc.
22 |
--------------------------------------------------------------------------------
/app/src/main/play/listings/en-GB/graphics/feature-graphic/14388460366258042089.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/devgianlu/Aria2App/5c85948d549ab2a9de65012bd6cfb14d8bc20671/app/src/main/play/listings/en-GB/graphics/feature-graphic/14388460366258042089.png
--------------------------------------------------------------------------------
/app/src/main/play/listings/en-GB/graphics/icon/5353168451724732701.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/devgianlu/Aria2App/5c85948d549ab2a9de65012bd6cfb14d8bc20671/app/src/main/play/listings/en-GB/graphics/icon/5353168451724732701.png
--------------------------------------------------------------------------------
/app/src/main/play/listings/en-GB/graphics/large-tablet-screenshots/1.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/devgianlu/Aria2App/5c85948d549ab2a9de65012bd6cfb14d8bc20671/app/src/main/play/listings/en-GB/graphics/large-tablet-screenshots/1.png
--------------------------------------------------------------------------------
/app/src/main/play/listings/en-GB/graphics/large-tablet-screenshots/2.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/devgianlu/Aria2App/5c85948d549ab2a9de65012bd6cfb14d8bc20671/app/src/main/play/listings/en-GB/graphics/large-tablet-screenshots/2.png
--------------------------------------------------------------------------------
/app/src/main/play/listings/en-GB/graphics/phone-screenshots/1.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/devgianlu/Aria2App/5c85948d549ab2a9de65012bd6cfb14d8bc20671/app/src/main/play/listings/en-GB/graphics/phone-screenshots/1.png
--------------------------------------------------------------------------------
/app/src/main/play/listings/en-GB/graphics/phone-screenshots/2.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/devgianlu/Aria2App/5c85948d549ab2a9de65012bd6cfb14d8bc20671/app/src/main/play/listings/en-GB/graphics/phone-screenshots/2.png
--------------------------------------------------------------------------------
/app/src/main/play/listings/en-GB/graphics/phone-screenshots/3.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/devgianlu/Aria2App/5c85948d549ab2a9de65012bd6cfb14d8bc20671/app/src/main/play/listings/en-GB/graphics/phone-screenshots/3.png
--------------------------------------------------------------------------------
/app/src/main/play/listings/en-GB/graphics/phone-screenshots/4.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/devgianlu/Aria2App/5c85948d549ab2a9de65012bd6cfb14d8bc20671/app/src/main/play/listings/en-GB/graphics/phone-screenshots/4.png
--------------------------------------------------------------------------------
/app/src/main/play/listings/en-GB/graphics/phone-screenshots/5.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/devgianlu/Aria2App/5c85948d549ab2a9de65012bd6cfb14d8bc20671/app/src/main/play/listings/en-GB/graphics/phone-screenshots/5.png
--------------------------------------------------------------------------------
/app/src/main/play/listings/en-GB/graphics/phone-screenshots/6.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/devgianlu/Aria2App/5c85948d549ab2a9de65012bd6cfb14d8bc20671/app/src/main/play/listings/en-GB/graphics/phone-screenshots/6.png
--------------------------------------------------------------------------------
/app/src/main/play/listings/en-GB/graphics/tablet-screenshots/1.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/devgianlu/Aria2App/5c85948d549ab2a9de65012bd6cfb14d8bc20671/app/src/main/play/listings/en-GB/graphics/tablet-screenshots/1.png
--------------------------------------------------------------------------------
/app/src/main/play/listings/en-GB/graphics/tablet-screenshots/2.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/devgianlu/Aria2App/5c85948d549ab2a9de65012bd6cfb14d8bc20671/app/src/main/play/listings/en-GB/graphics/tablet-screenshots/2.png
--------------------------------------------------------------------------------
/app/src/main/play/listings/en-GB/short-description.txt:
--------------------------------------------------------------------------------
1 | An advanced download manager and aria2 client for your pocket.
--------------------------------------------------------------------------------
/app/src/main/play/listings/en-GB/title.txt:
--------------------------------------------------------------------------------
1 | Aria2App (open source)
--------------------------------------------------------------------------------
/app/src/main/play/listings/en-US/full-description.txt:
--------------------------------------------------------------------------------
1 | Aria2App is your portable server-grade download manager backed by aria2 directly on your device. You can also manage aria2 instances running on external devices thanks to the JSON-RPC interface.
2 |
3 | Some of the features are:
4 | - Handle more servers simultaneously
5 | - Add HTTP(s), (s)FTP, BitTorrent, Metalink downloads
6 | - Add Torrents with the integrated search engine
7 | - Start downloads by clicking on links on the browser
8 | - Handle downloads (pause, resume, stop)
9 | - Find basic and in-depth information
10 | - View statistics about peers and server of your downloads
11 | - Display the information about every file in download
12 | - Download files from the server to your device through DirectDownload
13 | - Change a single download or aria2 general options
14 | - Receive live notifications of your downloads or your selected downloads
15 | And even more
16 |
17 | This project is open source at https://github.com/devgianlu/Aria2App
18 | ---------------------------------------
19 |
20 | aria2 is developed by Tatsuhiro Tsujikawa (https://github.com/tatsuhiro-t).
21 | BitTorrent is a registered trademark by BitTorrent Inc.
22 |
--------------------------------------------------------------------------------
/app/src/main/play/listings/en-US/short-description.txt:
--------------------------------------------------------------------------------
1 | An advanced download manager and aria2 client for your pocket.
--------------------------------------------------------------------------------
/app/src/main/play/listings/es-ES/full-description.txt:
--------------------------------------------------------------------------------
1 | Aria2App is your portable server-grade download manager backed by aria2 directly on your device. You can also manage aria2 instances running on external devices thanks to the JSON-RPC interface.
2 |
3 | Some of the features are:
4 | - Handle more servers simultaneously
5 | - Add HTTP(s), (s)FTP, BitTorrent, Metalink downloads
6 | - Add Torrents with the integrated search engine
7 | - Start downloads by clicking on links on the browser
8 | - Handle downloads (pause, resume, stop)
9 | - Find basic and in-depth information
10 | - View statistics about peers and server of your downloads
11 | - Display the information about every file in download
12 | - Download files from the server to your device through DirectDownload
13 | - Change a single download or aria2 general options
14 | - Receive live notifications of your downloads or your selected downloads
15 | And even more
16 |
17 | This project is open source at https://github.com/devgianlu/Aria2App
18 | ---------------------------------------
19 |
20 | aria2 is developed by Tatsuhiro Tsujikawa (https://github.com/tatsuhiro-t).
21 | BitTorrent is a registered trademark by BitTorrent Inc.
22 |
--------------------------------------------------------------------------------
/app/src/main/play/listings/es-ES/short-description.txt:
--------------------------------------------------------------------------------
1 | An advanced download manager and aria2 client for your pocket.
--------------------------------------------------------------------------------
/app/src/main/play/listings/fa-IR/full-description.txt:
--------------------------------------------------------------------------------
1 | Aria2App مدیر بارگیری درجه-سرور قابل حمل شماست که توسط aria2 مستقیما بر روی دستگاه شما پشتیبانی میشود. به لطف رابط JSON-RPC می توانید نمونههای aria2 که در دستگاه های بیرونی در حال اجرا هستند را نیز مدیریت کنید.
2 |
3 | برخی از ویژگیها:
4 | - مدیریت همزمان سرورهای بیشتر
5 | - افزودن بارگیریهای HTTP(s), (s)FTP, BitTorrent, Metalink
6 | - افزودن تورنتها با موتور جستجوی یکپارچه
7 | - آغاز بارگیریها با کلیک روی پیوندها در مرورگر
8 | - مدیریت بارگیریها (مکث، ادامه، توقف)
9 | - اطلاعات ابتدایی و کامل را بیابید
10 | - آمار مربوط به همتاها و سرور بارگیریهای خود را مشاهده کنید
11 | - نمایش اطلاعات مربوط به هر پرونده بارگیری شده
12 | - از طریق بارگیری مستقیم فایلها را از سرور به دستگاه خود بارگیری کنید
13 | - تنظیمات یک بارگیری یا کلی aria2 را تغییر دهید
14 | - اعلانهای زنده بارگیریها یا بارگیریهای انتخابی خود را دریافت کنید
15 | و حتی بیشتر
16 |
17 | این پروژه در https://github.com/devgianlu/Aria2App منبع باز است
18 | ---------------------------------------
19 |
20 | aria2 توسط Tatsuhiro Tsujikawa توسعه داده شده است
21 | (https://github.com/tatsuhiro-t).
22 | بیت تورنت یک نشان تجاری ثبت شده توسط شرکت بیت تورنت است.
23 |
--------------------------------------------------------------------------------
/app/src/main/play/listings/fa-IR/short-description.txt:
--------------------------------------------------------------------------------
1 | یک مدیر بارگیری پیشرفته و کارخواه aria2 در جیب شما.
--------------------------------------------------------------------------------
/app/src/main/play/listings/fi-FI/full-description.txt:
--------------------------------------------------------------------------------
1 | Aria2App is your portable server-grade download manager backed by aria2 directly on your device. You can also manage aria2 instances running on external devices thanks to the JSON-RPC interface.
2 |
3 | Some of the features are:
4 | - Handle more servers simultaneously
5 | - Add HTTP(s), (s)FTP, BitTorrent, Metalink downloads
6 | - Add Torrents with the integrated search engine
7 | - Start downloads by clicking on links on the browser
8 | - Handle downloads (pause, resume, stop)
9 | - Find basic and in-depth information
10 | - View statistics about peers and server of your downloads
11 | - Display the information about every file in download
12 | - Download files from the server to your device through DirectDownload
13 | - Change a single download or aria2 general options
14 | - Receive live notifications of your downloads or your selected downloads
15 | And even more
16 |
17 | This project is open source at https://github.com/devgianlu/Aria2App
18 | ---------------------------------------
19 |
20 | aria2 is developed by Tatsuhiro Tsujikawa (https://github.com/tatsuhiro-t).
21 | BitTorrent is a registered trademark by BitTorrent Inc.
22 |
--------------------------------------------------------------------------------
/app/src/main/play/listings/fi-FI/short-description.txt:
--------------------------------------------------------------------------------
1 | An advanced download manager and aria2 client for your pocket.
--------------------------------------------------------------------------------
/app/src/main/play/listings/fr-FR/full-description.txt:
--------------------------------------------------------------------------------
1 | Aria2App est votre gestionnaire de serveur de téléchargement supporté par aria2 directement sur votre appareil. Vous pouvez également gérer les instances aria2 fonctionnant sur des périphériques externes grâce à l'interface JSON-RPC.
2 |
3 | Certaines des fonctionnalités sont :
4 | - Gérer plus de serveurs simultanément
5 | - Ajout de téléchargements HTTP(s), (s)FTP, BitTorrent, Metalink
6 | - Ajouter des torrents avec le moteur de recherche intégré
7 | - Démarrez les téléchargements en cliquant sur les liens du navigateur
8 | - Gérer les téléchargements (pause, reprise, arrêt)
9 | - Trouver des informations basiques et approfondies
10 | - Voir les statistiques sur les pairs et le serveur de vos téléchargements
11 | - Affiche les informations sur chaque fichier en téléchargement
12 | - Télécharger les fichiers du serveur vers votre appareil via DirectDownload
13 | - Changer un seul téléchargement ou une seule option générale aria2
14 | - Recevoir des notifications en direct de vos téléchargements ou des téléchargements sélectionnés
15 | Et plus encore
16 |
17 | Les sources de ce projets sont ouvertes et disponibles sur https://github.com/devgianlu/Aria2App
18 | ---------------------------------------
19 |
20 | aria2 est développé par Tatsuhiro Tsujikawa (https://github.com/tatsuhiro-t).
21 | BitTorrent est une marque déposée par BitTorrent Inc.
22 |
--------------------------------------------------------------------------------
/app/src/main/play/listings/fr-FR/short-description.txt:
--------------------------------------------------------------------------------
1 | Un gestionnaire de téléchargement avancé et un client aria2 dans votre poche.
--------------------------------------------------------------------------------
/app/src/main/play/listings/he-IL/full-description.txt:
--------------------------------------------------------------------------------
1 | Aria2App is your portable server-grade download manager backed by aria2 directly on your device. You can also manage aria2 instances running on external devices thanks to the JSON-RPC interface.
2 |
3 | Some of the features are:
4 | - Handle more servers simultaneously
5 | - Add HTTP(s), (s)FTP, BitTorrent, Metalink downloads
6 | - Add Torrents with the integrated search engine
7 | - Start downloads by clicking on links on the browser
8 | - Handle downloads (pause, resume, stop)
9 | - Find basic and in-depth information
10 | - View statistics about peers and server of your downloads
11 | - Display the information about every file in download
12 | - Download files from the server to your device through DirectDownload
13 | - Change a single download or aria2 general options
14 | - Receive live notifications of your downloads or your selected downloads
15 | And even more
16 |
17 | This project is open source at https://github.com/devgianlu/Aria2App
18 | ---------------------------------------
19 |
20 | aria2 is developed by Tatsuhiro Tsujikawa (https://github.com/tatsuhiro-t).
21 | BitTorrent is a registered trademark by BitTorrent Inc.
22 |
--------------------------------------------------------------------------------
/app/src/main/play/listings/he-IL/short-description.txt:
--------------------------------------------------------------------------------
1 | An advanced download manager and aria2 client for your pocket.
--------------------------------------------------------------------------------
/app/src/main/play/listings/hu-HU/full-description.txt:
--------------------------------------------------------------------------------
1 | Aria2App is your portable server-grade download manager backed by aria2 directly on your device. You can also manage aria2 instances running on external devices thanks to the JSON-RPC interface.
2 |
3 | Some of the features are:
4 | - Handle more servers simultaneously
5 | - Add HTTP(s), (s)FTP, BitTorrent, Metalink downloads
6 | - Add Torrents with the integrated search engine
7 | - Start downloads by clicking on links on the browser
8 | - Handle downloads (pause, resume, stop)
9 | - Find basic and in-depth information
10 | - View statistics about peers and server of your downloads
11 | - Display the information about every file in download
12 | - Download files from the server to your device through DirectDownload
13 | - Change a single download or aria2 general options
14 | - Receive live notifications of your downloads or your selected downloads
15 | And even more
16 |
17 | This project is open source at https://github.com/devgianlu/Aria2App
18 | ---------------------------------------
19 |
20 | aria2 is developed by Tatsuhiro Tsujikawa (https://github.com/tatsuhiro-t).
21 | BitTorrent is a registered trademark by BitTorrent Inc.
22 |
--------------------------------------------------------------------------------
/app/src/main/play/listings/hu-HU/short-description.txt:
--------------------------------------------------------------------------------
1 | An advanced download manager and aria2 client for your pocket.
--------------------------------------------------------------------------------
/app/src/main/play/listings/it-IT/full-description.txt:
--------------------------------------------------------------------------------
1 | Aria2App is your portable server-grade download manager backed by aria2 directly on your device. You can also manage aria2 instances running on external devices thanks to the JSON-RPC interface.
2 |
3 | Some of the features are:
4 | - Handle more servers simultaneously
5 | - Add HTTP(s), (s)FTP, BitTorrent, Metalink downloads
6 | - Add Torrents with the integrated search engine
7 | - Start downloads by clicking on links on the browser
8 | - Handle downloads (pause, resume, stop)
9 | - Find basic and in-depth information
10 | - View statistics about peers and server of your downloads
11 | - Display the information about every file in download
12 | - Download files from the server to your device through DirectDownload
13 | - Change a single download or aria2 general options
14 | - Receive live notifications of your downloads or your selected downloads
15 | And even more
16 |
17 | This project is open source at https://github.com/devgianlu/Aria2App
18 | ---------------------------------------
19 |
20 | aria2 is developed by Tatsuhiro Tsujikawa (https://github.com/tatsuhiro-t).
21 | BitTorrent is a registered trademark by BitTorrent Inc.
22 |
--------------------------------------------------------------------------------
/app/src/main/play/listings/it-IT/short-description.txt:
--------------------------------------------------------------------------------
1 | An advanced download manager and aria2 client for your pocket.
--------------------------------------------------------------------------------
/app/src/main/play/listings/ja-JP/full-description.txt:
--------------------------------------------------------------------------------
1 | Aria2App is your portable server-grade download manager backed by aria2 directly on your device. You can also manage aria2 instances running on external devices thanks to the JSON-RPC interface.
2 |
3 | Some of the features are:
4 | - Handle more servers simultaneously
5 | - Add HTTP(s), (s)FTP, BitTorrent, Metalink downloads
6 | - Add Torrents with the integrated search engine
7 | - Start downloads by clicking on links on the browser
8 | - Handle downloads (pause, resume, stop)
9 | - Find basic and in-depth information
10 | - View statistics about peers and server of your downloads
11 | - Display the information about every file in download
12 | - Download files from the server to your device through DirectDownload
13 | - Change a single download or aria2 general options
14 | - Receive live notifications of your downloads or your selected downloads
15 | And even more
16 |
17 | This project is open source at https://github.com/devgianlu/Aria2App
18 | ---------------------------------------
19 |
20 | aria2 is developed by Tatsuhiro Tsujikawa (https://github.com/tatsuhiro-t).
21 | BitTorrent is a registered trademark by BitTorrent Inc.
22 |
--------------------------------------------------------------------------------
/app/src/main/play/listings/ja-JP/short-description.txt:
--------------------------------------------------------------------------------
1 | An advanced download manager and aria2 client for your pocket.
--------------------------------------------------------------------------------
/app/src/main/play/listings/ko-KR/full-description.txt:
--------------------------------------------------------------------------------
1 | Aria2App is your portable server-grade download manager backed by aria2 directly on your device. You can also manage aria2 instances running on external devices thanks to the JSON-RPC interface.
2 |
3 | Some of the features are:
4 | - Handle more servers simultaneously
5 | - Add HTTP(s), (s)FTP, BitTorrent, Metalink downloads
6 | - Add Torrents with the integrated search engine
7 | - Start downloads by clicking on links on the browser
8 | - Handle downloads (pause, resume, stop)
9 | - Find basic and in-depth information
10 | - View statistics about peers and server of your downloads
11 | - Display the information about every file in download
12 | - Download files from the server to your device through DirectDownload
13 | - Change a single download or aria2 general options
14 | - Receive live notifications of your downloads or your selected downloads
15 | And even more
16 |
17 | This project is open source at https://github.com/devgianlu/Aria2App
18 | ---------------------------------------
19 |
20 | aria2 is developed by Tatsuhiro Tsujikawa (https://github.com/tatsuhiro-t).
21 | BitTorrent is a registered trademark by BitTorrent Inc.
22 |
--------------------------------------------------------------------------------
/app/src/main/play/listings/ko-KR/short-description.txt:
--------------------------------------------------------------------------------
1 | An advanced download manager and aria2 client for your pocket.
--------------------------------------------------------------------------------
/app/src/main/play/listings/nl-NL/full-description.txt:
--------------------------------------------------------------------------------
1 | Aria2App is your portable server-grade download manager backed by aria2 directly on your device. You can also manage aria2 instances running on external devices thanks to the JSON-RPC interface.
2 |
3 | Some of the features are:
4 | - Handle more servers simultaneously
5 | - Add HTTP(s), (s)FTP, BitTorrent, Metalink downloads
6 | - Add Torrents with the integrated search engine
7 | - Start downloads by clicking on links on the browser
8 | - Handle downloads (pause, resume, stop)
9 | - Find basic and in-depth information
10 | - View statistics about peers and server of your downloads
11 | - Display the information about every file in download
12 | - Download files from the server to your device through DirectDownload
13 | - Change a single download or aria2 general options
14 | - Receive live notifications of your downloads or your selected downloads
15 | And even more
16 |
17 | This project is open source at https://github.com/devgianlu/Aria2App
18 | ---------------------------------------
19 |
20 | aria2 is developed by Tatsuhiro Tsujikawa (https://github.com/tatsuhiro-t).
21 | BitTorrent is a registered trademark by BitTorrent Inc.
22 |
--------------------------------------------------------------------------------
/app/src/main/play/listings/nl-NL/short-description.txt:
--------------------------------------------------------------------------------
1 | An advanced download manager and aria2 client for your pocket.
--------------------------------------------------------------------------------
/app/src/main/play/listings/no-NO/full-description.txt:
--------------------------------------------------------------------------------
1 | Aria2App is your portable server-grade download manager backed by aria2 directly on your device. You can also manage aria2 instances running on external devices thanks to the JSON-RPC interface.
2 |
3 | Some of the features are:
4 | - Handle more servers simultaneously
5 | - Add HTTP(s), (s)FTP, BitTorrent, Metalink downloads
6 | - Add Torrents with the integrated search engine
7 | - Start downloads by clicking on links on the browser
8 | - Handle downloads (pause, resume, stop)
9 | - Find basic and in-depth information
10 | - View statistics about peers and server of your downloads
11 | - Display the information about every file in download
12 | - Download files from the server to your device through DirectDownload
13 | - Change a single download or aria2 general options
14 | - Receive live notifications of your downloads or your selected downloads
15 | And even more
16 |
17 | This project is open source at https://github.com/devgianlu/Aria2App
18 | ---------------------------------------
19 |
20 | aria2 is developed by Tatsuhiro Tsujikawa (https://github.com/tatsuhiro-t).
21 | BitTorrent is a registered trademark by BitTorrent Inc.
22 |
--------------------------------------------------------------------------------
/app/src/main/play/listings/no-NO/short-description.txt:
--------------------------------------------------------------------------------
1 | An advanced download manager and aria2 client for your pocket.
--------------------------------------------------------------------------------
/app/src/main/play/listings/pl-PL/full-description.txt:
--------------------------------------------------------------------------------
1 | Aria2App is your portable server-grade download manager backed by aria2 directly on your device. You can also manage aria2 instances running on external devices thanks to the JSON-RPC interface.
2 |
3 | Some of the features are:
4 | - Handle more servers simultaneously
5 | - Add HTTP(s), (s)FTP, BitTorrent, Metalink downloads
6 | - Add Torrents with the integrated search engine
7 | - Start downloads by clicking on links on the browser
8 | - Handle downloads (pause, resume, stop)
9 | - Find basic and in-depth information
10 | - View statistics about peers and server of your downloads
11 | - Display the information about every file in download
12 | - Download files from the server to your device through DirectDownload
13 | - Change a single download or aria2 general options
14 | - Receive live notifications of your downloads or your selected downloads
15 | And even more
16 |
17 | This project is open source at https://github.com/devgianlu/Aria2App
18 | ---------------------------------------
19 |
20 | aria2 is developed by Tatsuhiro Tsujikawa (https://github.com/tatsuhiro-t).
21 | BitTorrent is a registered trademark by BitTorrent Inc.
22 |
--------------------------------------------------------------------------------
/app/src/main/play/listings/pl-PL/short-description.txt:
--------------------------------------------------------------------------------
1 | An advanced download manager and aria2 client for your pocket.
--------------------------------------------------------------------------------
/app/src/main/play/listings/pt-BR/full-description.txt:
--------------------------------------------------------------------------------
1 | Aria2App é o seu gerenciador de downloads portátil do servidor apoiado por aria2 diretamente no seu dispositivo. Você também pode gerenciar instâncias aria2 em dispositivos externos graças à interface JSON-RPC.
2 |
3 | Alguns dos recursos são:
4 | - Operar mais servidores simultaneamente
5 | - Adicionar HTTP(s), (s)FTP, BitTorrent, Metalink downloads
6 | - Adicionar Torrents com o motor de busca integrado
7 | - Inicie os downloads, clicando em links no navegador
8 | - Manipular downloads (pausar, retomar, parar)
9 | - Encontre informações básicas e aprofundadas
10 | - Exibir estatísticas sobre os pares e o servidor dos seus downloads
11 | - Exibir as informações sobre cada arquivo no download
12 | - Baixar arquivos do servidor para o seu dispositivo através do DirectDownload
13 | - Alterar as opções gerais de um único download ou do aria2
14 | - Receba notificações ao vivo dos seus downloads ou dos downloads selecionados
15 | E ainda mais
16 |
17 | Este projeto é de código aberto em https://github.com/devgianlu/Aria2App
18 | ---------------------------------------
19 |
20 | aria2 é desenvolvido por Tatsuhiro Tsujikawa (https://github.com/tatsuhiro-t).
21 | BitTorrent é uma marca registrada pela BitTorrent Inc.
22 |
--------------------------------------------------------------------------------
/app/src/main/play/listings/pt-BR/short-description.txt:
--------------------------------------------------------------------------------
1 | Um gerenciador de download avançado e um cliente aria2 em seu bolso.
--------------------------------------------------------------------------------
/app/src/main/play/listings/pt-PT/full-description.txt:
--------------------------------------------------------------------------------
1 | Aria2App is your portable server-grade download manager backed by aria2 directly on your device. You can also manage aria2 instances running on external devices thanks to the JSON-RPC interface.
2 |
3 | Some of the features are:
4 | - Handle more servers simultaneously
5 | - Add HTTP(s), (s)FTP, BitTorrent, Metalink downloads
6 | - Add Torrents with the integrated search engine
7 | - Start downloads by clicking on links on the browser
8 | - Handle downloads (pause, resume, stop)
9 | - Find basic and in-depth information
10 | - View statistics about peers and server of your downloads
11 | - Display the information about every file in download
12 | - Download files from the server to your device through DirectDownload
13 | - Change a single download or aria2 general options
14 | - Receive live notifications of your downloads or your selected downloads
15 | And even more
16 |
17 | This project is open source at https://github.com/devgianlu/Aria2App
18 | ---------------------------------------
19 |
20 | aria2 is developed by Tatsuhiro Tsujikawa (https://github.com/tatsuhiro-t).
21 | BitTorrent is a registered trademark by BitTorrent Inc.
22 |
--------------------------------------------------------------------------------
/app/src/main/play/listings/pt-PT/short-description.txt:
--------------------------------------------------------------------------------
1 | An advanced download manager and aria2 client for your pocket.
--------------------------------------------------------------------------------
/app/src/main/play/listings/sr-SP/full-description.txt:
--------------------------------------------------------------------------------
1 | Aria2App is your portable server-grade download manager backed by aria2 directly on your device. You can also manage aria2 instances running on external devices thanks to the JSON-RPC interface.
2 |
3 | Some of the features are:
4 | - Handle more servers simultaneously
5 | - Add HTTP(s), (s)FTP, BitTorrent, Metalink downloads
6 | - Add Torrents with the integrated search engine
7 | - Start downloads by clicking on links on the browser
8 | - Handle downloads (pause, resume, stop)
9 | - Find basic and in-depth information
10 | - View statistics about peers and server of your downloads
11 | - Display the information about every file in download
12 | - Download files from the server to your device through DirectDownload
13 | - Change a single download or aria2 general options
14 | - Receive live notifications of your downloads or your selected downloads
15 | And even more
16 |
17 | This project is open source at https://github.com/devgianlu/Aria2App
18 | ---------------------------------------
19 |
20 | aria2 is developed by Tatsuhiro Tsujikawa (https://github.com/tatsuhiro-t).
21 | BitTorrent is a registered trademark by BitTorrent Inc.
22 |
--------------------------------------------------------------------------------
/app/src/main/play/listings/sr-SP/short-description.txt:
--------------------------------------------------------------------------------
1 | An advanced download manager and aria2 client for your pocket.
--------------------------------------------------------------------------------
/app/src/main/play/listings/sv-SE/full-description.txt:
--------------------------------------------------------------------------------
1 | Aria2App is your portable server-grade download manager backed by aria2 directly on your device. You can also manage aria2 instances running on external devices thanks to the JSON-RPC interface.
2 |
3 | Some of the features are:
4 | - Handle more servers simultaneously
5 | - Add HTTP(s), (s)FTP, BitTorrent, Metalink downloads
6 | - Add Torrents with the integrated search engine
7 | - Start downloads by clicking on links on the browser
8 | - Handle downloads (pause, resume, stop)
9 | - Find basic and in-depth information
10 | - View statistics about peers and server of your downloads
11 | - Display the information about every file in download
12 | - Download files from the server to your device through DirectDownload
13 | - Change a single download or aria2 general options
14 | - Receive live notifications of your downloads or your selected downloads
15 | And even more
16 |
17 | This project is open source at https://github.com/devgianlu/Aria2App
18 | ---------------------------------------
19 |
20 | aria2 is developed by Tatsuhiro Tsujikawa (https://github.com/tatsuhiro-t).
21 | BitTorrent is a registered trademark by BitTorrent Inc.
22 |
--------------------------------------------------------------------------------
/app/src/main/play/listings/sv-SE/short-description.txt:
--------------------------------------------------------------------------------
1 | An advanced download manager and aria2 client for your pocket.
--------------------------------------------------------------------------------
/app/src/main/play/listings/tr-TR/full-description.txt:
--------------------------------------------------------------------------------
1 | Aria2App is your portable server-grade download manager backed by aria2 directly on your device. You can also manage aria2 instances running on external devices thanks to the JSON-RPC interface.
2 |
3 | Some of the features are:
4 | - Handle more servers simultaneously
5 | - Add HTTP(s), (s)FTP, BitTorrent, Metalink downloads
6 | - Add Torrents with the integrated search engine
7 | - Start downloads by clicking on links on the browser
8 | - Handle downloads (pause, resume, stop)
9 | - Find basic and in-depth information
10 | - View statistics about peers and server of your downloads
11 | - Display the information about every file in download
12 | - Download files from the server to your device through DirectDownload
13 | - Change a single download or aria2 general options
14 | - Receive live notifications of your downloads or your selected downloads
15 | And even more
16 |
17 | This project is open source at https://github.com/devgianlu/Aria2App
18 | ---------------------------------------
19 |
20 | aria2 is developed by Tatsuhiro Tsujikawa (https://github.com/tatsuhiro-t).
21 | BitTorrent is a registered trademark by BitTorrent Inc.
22 |
--------------------------------------------------------------------------------
/app/src/main/play/listings/tr-TR/short-description.txt:
--------------------------------------------------------------------------------
1 | An advanced download manager and aria2 client for your pocket.
--------------------------------------------------------------------------------
/app/src/main/play/listings/zh-CN/full-description.txt:
--------------------------------------------------------------------------------
1 | Aria2App 是一款由您设备上的aria2 支持的便携式服务器级别下载管理器 通过JSON-RPC 接口,您也可以管理在外部设备上运行 aria2 实例。
2 |
3 | 一些特性:
4 | - 同时处理更多服务器
5 | - 添加 HTTP(s)、(s)FTP、BitTorrent、 Metalink 下载
6 | - 通过集成搜索引擎添加 Torrent
7 | - 点击浏览器链接启动下载
8 | - 处理下载(暂停、恢复、停止)
9 | - 寻找基本和深入的信息
10 | - 查看下载项的peers和服务器的统计数据
11 | - 显示下载中每个文件的信息
12 | - 通过 DirectDownload 把文件从服务器下载到您的设备
13 | - 更改单个下载或aria2 一般选项
14 | - 接收您的下载或选定下载的实时通知
15 | 更多
16 |
17 | 项目源代码位于 https://github.com/devgianlu/Aria2App
18 | ---------------------------------------
19 |
20 | aria2由Tatsuhiro Tsujikawa (https://github.com/tatsuhiro-t)开发。
21 | BitTorrent 是 BitTorrent 公司注册的商标。
22 |
--------------------------------------------------------------------------------
/app/src/main/play/listings/zh-CN/short-description.txt:
--------------------------------------------------------------------------------
1 | 您口袋里的高级下载管理器和aria2客户端
--------------------------------------------------------------------------------
/app/src/main/play/listings/zh-TW/full-description.txt:
--------------------------------------------------------------------------------
1 | Aria2App 是您裝置上由 Aria2 直接支援的可攜式伺服器級下載管理員。 透過 JSON-RPC 介面,你還可以管理在裝置外部執行的 Aria2 執行個體。
2 |
3 | 精采特色:
4 | - 同時處理更多伺服器
5 | - 新增 HTTP、FTP、BitTorrent、中繼連結下載
6 | - 透過整合搜尋引擎新增 Torrent
7 | - 按一下瀏覽器上的連結即可開始下載
8 | - 處理下載 (暫停、繼續、停止)
9 | - 尋找基本和深入資訊
10 | - 檢視有關下載同儕和伺服器的統計資料
11 | - 顯示正在下載的每個檔案的資訊
12 | - 透過直接下載將檔案直接從伺服器下載到您的裝置
13 | - 變更單一下載或 Aria2 一般選項
14 | - 接收您的下載或您選取的下載的即時通知
15 | 甚至更多
16 |
17 | 此專案於此開放原始碼:https://github.com/devgianlu/Aria2App
18 | ---------------------------------------
19 |
20 | Aria2 由 Tatsuhiro Tsujikawa (https://github.com/tatsuhiro-t) 開發。
21 | BitTorrent® 是 BitTorrent, Inc 的註冊商標。
22 |
--------------------------------------------------------------------------------
/app/src/main/play/listings/zh-TW/short-description.txt:
--------------------------------------------------------------------------------
1 | 一個隨身進階下載管理員和 Aria2 用戶端。
--------------------------------------------------------------------------------
/app/src/main/play/release-notes/en-GB/production.txt:
--------------------------------------------------------------------------------
1 | ### Added
2 | - Some translations
3 | - Monochrome icon
4 |
5 | ### Fixed
6 | - Fixed startup crash
7 |
8 | ### Changed
9 | - Updated libraries
--------------------------------------------------------------------------------
/app/src/main/res/color-night/text_field_stroke_on_dark.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
--------------------------------------------------------------------------------
/app/src/main/res/color/text_field_stroke_on_dark.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
--------------------------------------------------------------------------------
/app/src/main/res/drawable-hdpi/baseline_all_inbox_colored_24.xml:
--------------------------------------------------------------------------------
1 |
7 |
10 |
11 |
--------------------------------------------------------------------------------
/app/src/main/res/drawable-hdpi/baseline_language_colored_24.xml:
--------------------------------------------------------------------------------
1 |
7 |
10 |
11 |
--------------------------------------------------------------------------------
/app/src/main/res/drawable-hdpi/ic_aria2_notification.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/devgianlu/Aria2App/5c85948d549ab2a9de65012bd6cfb14d8bc20671/app/src/main/res/drawable-hdpi/ic_aria2_notification.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-hdpi/ic_aria2android.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/devgianlu/Aria2App/5c85948d549ab2a9de65012bd6cfb14d8bc20671/app/src/main/res/drawable-hdpi/ic_aria2android.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-hdpi/ic_error_outline_grey_48dp.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/devgianlu/Aria2App/5c85948d549ab2a9de65012bd6cfb14d8bc20671/app/src/main/res/drawable-hdpi/ic_error_outline_grey_48dp.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-hdpi/ic_new_releases_grey_48dp.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/devgianlu/Aria2App/5c85948d549ab2a9de65012bd6cfb14d8bc20671/app/src/main/res/drawable-hdpi/ic_new_releases_grey_48dp.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-hdpi/ic_notification.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/devgianlu/Aria2App/5c85948d549ab2a9de65012bd6cfb14d8bc20671/app/src/main/res/drawable-hdpi/ic_notification.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-hdpi/ic_torrent_colored_48dp.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/devgianlu/Aria2App/5c85948d549ab2a9de65012bd6cfb14d8bc20671/app/src/main/res/drawable-hdpi/ic_torrent_colored_48dp.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-hdpi/ic_torrent_white_48dp.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/devgianlu/Aria2App/5c85948d549ab2a9de65012bd6cfb14d8bc20671/app/src/main/res/drawable-hdpi/ic_torrent_white_48dp.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-mdpi/ic_aria2_notification.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/devgianlu/Aria2App/5c85948d549ab2a9de65012bd6cfb14d8bc20671/app/src/main/res/drawable-mdpi/ic_aria2_notification.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-mdpi/ic_aria2android.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/devgianlu/Aria2App/5c85948d549ab2a9de65012bd6cfb14d8bc20671/app/src/main/res/drawable-mdpi/ic_aria2android.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-mdpi/ic_error_outline_grey_48dp.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/devgianlu/Aria2App/5c85948d549ab2a9de65012bd6cfb14d8bc20671/app/src/main/res/drawable-mdpi/ic_error_outline_grey_48dp.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-mdpi/ic_new_releases_grey_48dp.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/devgianlu/Aria2App/5c85948d549ab2a9de65012bd6cfb14d8bc20671/app/src/main/res/drawable-mdpi/ic_new_releases_grey_48dp.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-mdpi/ic_notification.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/devgianlu/Aria2App/5c85948d549ab2a9de65012bd6cfb14d8bc20671/app/src/main/res/drawable-mdpi/ic_notification.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-mdpi/ic_torrent_colored_48dp.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/devgianlu/Aria2App/5c85948d549ab2a9de65012bd6cfb14d8bc20671/app/src/main/res/drawable-mdpi/ic_torrent_colored_48dp.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-mdpi/ic_torrent_white_48dp.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/devgianlu/Aria2App/5c85948d549ab2a9de65012bd6cfb14d8bc20671/app/src/main/res/drawable-mdpi/ic_torrent_white_48dp.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-nodpi/ic_launcher.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/devgianlu/Aria2App/5c85948d549ab2a9de65012bd6cfb14d8bc20671/app/src/main/res/drawable-nodpi/ic_launcher.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xhdpi/ic_aria2_notification.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/devgianlu/Aria2App/5c85948d549ab2a9de65012bd6cfb14d8bc20671/app/src/main/res/drawable-xhdpi/ic_aria2_notification.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xhdpi/ic_aria2android.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/devgianlu/Aria2App/5c85948d549ab2a9de65012bd6cfb14d8bc20671/app/src/main/res/drawable-xhdpi/ic_aria2android.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xhdpi/ic_error_outline_grey_48dp.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/devgianlu/Aria2App/5c85948d549ab2a9de65012bd6cfb14d8bc20671/app/src/main/res/drawable-xhdpi/ic_error_outline_grey_48dp.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xhdpi/ic_new_releases_grey_48dp.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/devgianlu/Aria2App/5c85948d549ab2a9de65012bd6cfb14d8bc20671/app/src/main/res/drawable-xhdpi/ic_new_releases_grey_48dp.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xhdpi/ic_notification.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/devgianlu/Aria2App/5c85948d549ab2a9de65012bd6cfb14d8bc20671/app/src/main/res/drawable-xhdpi/ic_notification.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xhdpi/ic_torrent_colored_48dp.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/devgianlu/Aria2App/5c85948d549ab2a9de65012bd6cfb14d8bc20671/app/src/main/res/drawable-xhdpi/ic_torrent_colored_48dp.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xhdpi/ic_torrent_white_48dp.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/devgianlu/Aria2App/5c85948d549ab2a9de65012bd6cfb14d8bc20671/app/src/main/res/drawable-xhdpi/ic_torrent_white_48dp.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xxhdpi/ic_aria2_notification.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/devgianlu/Aria2App/5c85948d549ab2a9de65012bd6cfb14d8bc20671/app/src/main/res/drawable-xxhdpi/ic_aria2_notification.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xxhdpi/ic_aria2android.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/devgianlu/Aria2App/5c85948d549ab2a9de65012bd6cfb14d8bc20671/app/src/main/res/drawable-xxhdpi/ic_aria2android.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xxhdpi/ic_error_outline_grey_48dp.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/devgianlu/Aria2App/5c85948d549ab2a9de65012bd6cfb14d8bc20671/app/src/main/res/drawable-xxhdpi/ic_error_outline_grey_48dp.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xxhdpi/ic_new_releases_grey_48dp.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/devgianlu/Aria2App/5c85948d549ab2a9de65012bd6cfb14d8bc20671/app/src/main/res/drawable-xxhdpi/ic_new_releases_grey_48dp.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xxhdpi/ic_notification.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/devgianlu/Aria2App/5c85948d549ab2a9de65012bd6cfb14d8bc20671/app/src/main/res/drawable-xxhdpi/ic_notification.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xxhdpi/ic_torrent_colored_48dp.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/devgianlu/Aria2App/5c85948d549ab2a9de65012bd6cfb14d8bc20671/app/src/main/res/drawable-xxhdpi/ic_torrent_colored_48dp.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xxhdpi/ic_torrent_white_48dp.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/devgianlu/Aria2App/5c85948d549ab2a9de65012bd6cfb14d8bc20671/app/src/main/res/drawable-xxhdpi/ic_torrent_white_48dp.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xxxhdpi/ic_aria2_notification.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/devgianlu/Aria2App/5c85948d549ab2a9de65012bd6cfb14d8bc20671/app/src/main/res/drawable-xxxhdpi/ic_aria2_notification.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xxxhdpi/ic_aria2android.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/devgianlu/Aria2App/5c85948d549ab2a9de65012bd6cfb14d8bc20671/app/src/main/res/drawable-xxxhdpi/ic_aria2android.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xxxhdpi/ic_error_outline_grey_48dp.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/devgianlu/Aria2App/5c85948d549ab2a9de65012bd6cfb14d8bc20671/app/src/main/res/drawable-xxxhdpi/ic_error_outline_grey_48dp.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xxxhdpi/ic_new_releases_grey_48dp.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/devgianlu/Aria2App/5c85948d549ab2a9de65012bd6cfb14d8bc20671/app/src/main/res/drawable-xxxhdpi/ic_new_releases_grey_48dp.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xxxhdpi/ic_torrent_colored_48dp.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/devgianlu/Aria2App/5c85948d549ab2a9de65012bd6cfb14d8bc20671/app/src/main/res/drawable-xxxhdpi/ic_torrent_colored_48dp.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xxxhdpi/ic_torrent_white_48dp.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/devgianlu/Aria2App/5c85948d549ab2a9de65012bd6cfb14d8bc20671/app/src/main/res/drawable-xxxhdpi/ic_torrent_white_48dp.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable/baseline_access_time_24.xml:
--------------------------------------------------------------------------------
1 |
7 |
10 |
13 |
14 |
--------------------------------------------------------------------------------
/app/src/main/res/drawable/baseline_add_24.xml:
--------------------------------------------------------------------------------
1 |
7 |
10 |
11 |
--------------------------------------------------------------------------------
/app/src/main/res/drawable/baseline_add_circle_24.xml:
--------------------------------------------------------------------------------
1 |
7 |
10 |
11 |
--------------------------------------------------------------------------------
/app/src/main/res/drawable/baseline_all_inbox_24.xml:
--------------------------------------------------------------------------------
1 |
7 |
10 |
11 |
--------------------------------------------------------------------------------
/app/src/main/res/drawable/baseline_android_24.xml:
--------------------------------------------------------------------------------
1 |
7 |
10 |
11 |
--------------------------------------------------------------------------------
/app/src/main/res/drawable/baseline_announcement_24.xml:
--------------------------------------------------------------------------------
1 |
7 |
10 |
11 |
--------------------------------------------------------------------------------
/app/src/main/res/drawable/baseline_arrow_downward_24.xml:
--------------------------------------------------------------------------------
1 |
7 |
10 |
11 |
--------------------------------------------------------------------------------
/app/src/main/res/drawable/baseline_arrow_upward_24.xml:
--------------------------------------------------------------------------------
1 |
7 |
10 |
11 |
--------------------------------------------------------------------------------
/app/src/main/res/drawable/baseline_bookmark_24.xml:
--------------------------------------------------------------------------------
1 |
7 |
10 |
11 |
--------------------------------------------------------------------------------
/app/src/main/res/drawable/baseline_clear_24.xml:
--------------------------------------------------------------------------------
1 |
7 |
10 |
11 |
--------------------------------------------------------------------------------
/app/src/main/res/drawable/baseline_clear_outline_24.xml:
--------------------------------------------------------------------------------
1 |
2 |
8 |
11 |
--------------------------------------------------------------------------------
/app/src/main/res/drawable/baseline_cloud_24.xml:
--------------------------------------------------------------------------------
1 |
7 |
10 |
11 |
--------------------------------------------------------------------------------
/app/src/main/res/drawable/baseline_cloud_done_24.xml:
--------------------------------------------------------------------------------
1 |
7 |
10 |
11 |
--------------------------------------------------------------------------------
/app/src/main/res/drawable/baseline_cloud_download_24.xml:
--------------------------------------------------------------------------------
1 |
7 |
10 |
11 |
--------------------------------------------------------------------------------
/app/src/main/res/drawable/baseline_cloud_off_24.xml:
--------------------------------------------------------------------------------
1 |
7 |
10 |
11 |
--------------------------------------------------------------------------------
/app/src/main/res/drawable/baseline_delete_24.xml:
--------------------------------------------------------------------------------
1 |
7 |
10 |
11 |
--------------------------------------------------------------------------------
/app/src/main/res/drawable/baseline_delete_forever_24.xml:
--------------------------------------------------------------------------------
1 |
7 |
10 |
11 |
--------------------------------------------------------------------------------
/app/src/main/res/drawable/baseline_done_24.xml:
--------------------------------------------------------------------------------
1 |
7 |
10 |
11 |
--------------------------------------------------------------------------------
/app/src/main/res/drawable/baseline_done_all_24.xml:
--------------------------------------------------------------------------------
1 |
7 |
10 |
11 |
--------------------------------------------------------------------------------
/app/src/main/res/drawable/baseline_download_24.xml:
--------------------------------------------------------------------------------
1 |
7 |
10 |
11 |
--------------------------------------------------------------------------------
/app/src/main/res/drawable/baseline_edit_24.xml:
--------------------------------------------------------------------------------
1 |
7 |
10 |
11 |
--------------------------------------------------------------------------------
/app/src/main/res/drawable/baseline_error_24.xml:
--------------------------------------------------------------------------------
1 |
7 |
10 |
11 |
--------------------------------------------------------------------------------
/app/src/main/res/drawable/baseline_error_outline_24.xml:
--------------------------------------------------------------------------------
1 |
7 |
10 |
11 |
--------------------------------------------------------------------------------
/app/src/main/res/drawable/baseline_favorite_24.xml:
--------------------------------------------------------------------------------
1 |
7 |
10 |
11 |
--------------------------------------------------------------------------------
/app/src/main/res/drawable/baseline_favorite_border_24.xml:
--------------------------------------------------------------------------------
1 |
7 |
10 |
11 |
--------------------------------------------------------------------------------
/app/src/main/res/drawable/baseline_filter_list_24.xml:
--------------------------------------------------------------------------------
1 |
7 |
10 |
11 |
--------------------------------------------------------------------------------
/app/src/main/res/drawable/baseline_folder_24.xml:
--------------------------------------------------------------------------------
1 |
7 |
10 |
11 |
--------------------------------------------------------------------------------
/app/src/main/res/drawable/baseline_home_24.xml:
--------------------------------------------------------------------------------
1 |
7 |
10 |
11 |
--------------------------------------------------------------------------------
/app/src/main/res/drawable/baseline_info_outline_24.xml:
--------------------------------------------------------------------------------
1 |
7 |
10 |
11 |
--------------------------------------------------------------------------------
/app/src/main/res/drawable/baseline_insert_drive_file_24.xml:
--------------------------------------------------------------------------------
1 |
7 |
10 |
11 |
--------------------------------------------------------------------------------
/app/src/main/res/drawable/baseline_keyboard_arrow_down_24.xml:
--------------------------------------------------------------------------------
1 |
7 |
10 |
11 |
--------------------------------------------------------------------------------
/app/src/main/res/drawable/baseline_keyboard_arrow_right_24.xml:
--------------------------------------------------------------------------------
1 |
7 |
10 |
11 |
--------------------------------------------------------------------------------
/app/src/main/res/drawable/baseline_language_24.xml:
--------------------------------------------------------------------------------
1 |
7 |
10 |
11 |
--------------------------------------------------------------------------------
/app/src/main/res/drawable/baseline_link_24.xml:
--------------------------------------------------------------------------------
1 |
7 |
10 |
11 |
--------------------------------------------------------------------------------
/app/src/main/res/drawable/baseline_link_colored_24.xml:
--------------------------------------------------------------------------------
1 |
6 |
9 |
10 |
--------------------------------------------------------------------------------
/app/src/main/res/drawable/baseline_list_24.xml:
--------------------------------------------------------------------------------
1 |
7 |
10 |
11 |
--------------------------------------------------------------------------------
/app/src/main/res/drawable/baseline_more_24.xml:
--------------------------------------------------------------------------------
1 |
7 |
10 |
11 |
--------------------------------------------------------------------------------
/app/src/main/res/drawable/baseline_network_check_24.xml:
--------------------------------------------------------------------------------
1 |
7 |
10 |
11 |
--------------------------------------------------------------------------------
/app/src/main/res/drawable/baseline_notifications_24.xml:
--------------------------------------------------------------------------------
1 |
7 |
10 |
11 |
--------------------------------------------------------------------------------
/app/src/main/res/drawable/baseline_notifications_active_24.xml:
--------------------------------------------------------------------------------
1 |
7 |
10 |
11 |
--------------------------------------------------------------------------------
/app/src/main/res/drawable/baseline_notifications_none_24.xml:
--------------------------------------------------------------------------------
1 |
7 |
10 |
11 |
--------------------------------------------------------------------------------
/app/src/main/res/drawable/baseline_notifications_off_24.xml:
--------------------------------------------------------------------------------
1 |
7 |
10 |
11 |
--------------------------------------------------------------------------------
/app/src/main/res/drawable/baseline_opacity_24.xml:
--------------------------------------------------------------------------------
1 |
7 |
10 |
11 |
--------------------------------------------------------------------------------
/app/src/main/res/drawable/baseline_open_in_new_24.xml:
--------------------------------------------------------------------------------
1 |
7 |
10 |
11 |
--------------------------------------------------------------------------------
/app/src/main/res/drawable/baseline_pause_24.xml:
--------------------------------------------------------------------------------
1 |
7 |
10 |
11 |
--------------------------------------------------------------------------------
/app/src/main/res/drawable/baseline_pause_circle_outline_24.xml:
--------------------------------------------------------------------------------
1 |
7 |
10 |
11 |
--------------------------------------------------------------------------------
/app/src/main/res/drawable/baseline_people_24.xml:
--------------------------------------------------------------------------------
1 |
7 |
10 |
11 |
--------------------------------------------------------------------------------
/app/src/main/res/drawable/baseline_play_arrow_24.xml:
--------------------------------------------------------------------------------
1 |
7 |
10 |
11 |
--------------------------------------------------------------------------------
/app/src/main/res/drawable/baseline_play_circle_outline_24.xml:
--------------------------------------------------------------------------------
1 |
7 |
10 |
11 |
--------------------------------------------------------------------------------
/app/src/main/res/drawable/baseline_playlist_add_24.xml:
--------------------------------------------------------------------------------
1 |
7 |
10 |
11 |
--------------------------------------------------------------------------------
/app/src/main/res/drawable/baseline_playlist_add_colored_24.xml:
--------------------------------------------------------------------------------
1 |
6 |
9 |
10 |
--------------------------------------------------------------------------------
/app/src/main/res/drawable/baseline_refresh_24.xml:
--------------------------------------------------------------------------------
1 |
7 |
10 |
11 |
--------------------------------------------------------------------------------
/app/src/main/res/drawable/baseline_report_problem_24.xml:
--------------------------------------------------------------------------------
1 |
7 |
10 |
11 |
--------------------------------------------------------------------------------
/app/src/main/res/drawable/baseline_search_24.xml:
--------------------------------------------------------------------------------
1 |
7 |
10 |
11 |
--------------------------------------------------------------------------------
/app/src/main/res/drawable/baseline_search_colored_24.xml:
--------------------------------------------------------------------------------
1 |
6 |
9 |
10 |
--------------------------------------------------------------------------------
/app/src/main/res/drawable/baseline_select_all_24.xml:
--------------------------------------------------------------------------------
1 |
7 |
10 |
11 |
--------------------------------------------------------------------------------
/app/src/main/res/drawable/baseline_sms_24.xml:
--------------------------------------------------------------------------------
1 |
7 |
10 |
11 |
--------------------------------------------------------------------------------
/app/src/main/res/drawable/baseline_sort_24.xml:
--------------------------------------------------------------------------------
1 |
7 |
10 |
11 |
--------------------------------------------------------------------------------
/app/src/main/res/drawable/baseline_stop_24.xml:
--------------------------------------------------------------------------------
1 |
7 |
10 |
11 |
--------------------------------------------------------------------------------
/app/src/main/res/drawable/baseline_supervisor_account_24.xml:
--------------------------------------------------------------------------------
1 |
7 |
10 |
11 |
--------------------------------------------------------------------------------
/app/src/main/res/drawable/baseline_update_24.xml:
--------------------------------------------------------------------------------
1 |
7 |
10 |
11 |
--------------------------------------------------------------------------------
/app/src/main/res/drawable/baseline_upload_24.xml:
--------------------------------------------------------------------------------
1 |
7 |
10 |
11 |
--------------------------------------------------------------------------------
/app/src/main/res/drawable/baseline_verified_user_24.xml:
--------------------------------------------------------------------------------
1 |
7 |
10 |
11 |
--------------------------------------------------------------------------------
/app/src/main/res/drawable/fab_label_layout.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
9 |
10 |
--------------------------------------------------------------------------------
/app/src/main/res/font/roboto_black.ttf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/devgianlu/Aria2App/5c85948d549ab2a9de65012bd6cfb14d8bc20671/app/src/main/res/font/roboto_black.ttf
--------------------------------------------------------------------------------
/app/src/main/res/font/roboto_bold.ttf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/devgianlu/Aria2App/5c85948d549ab2a9de65012bd6cfb14d8bc20671/app/src/main/res/font/roboto_bold.ttf
--------------------------------------------------------------------------------
/app/src/main/res/font/roboto_light.ttf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/devgianlu/Aria2App/5c85948d549ab2a9de65012bd6cfb14d8bc20671/app/src/main/res/font/roboto_light.ttf
--------------------------------------------------------------------------------
/app/src/main/res/font/roboto_medium.ttf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/devgianlu/Aria2App/5c85948d549ab2a9de65012bd6cfb14d8bc20671/app/src/main/res/font/roboto_medium.ttf
--------------------------------------------------------------------------------
/app/src/main/res/layout/activity_add_download.xml:
--------------------------------------------------------------------------------
1 |
2 |
7 |
8 |
14 |
15 |
21 |
22 |
26 |
--------------------------------------------------------------------------------
/app/src/main/res/layout/activity_in_app_aria2_conf.xml:
--------------------------------------------------------------------------------
1 |
2 |
5 |
6 |
12 |
13 |
23 |
24 |
31 |
32 |
36 |
37 |
38 |
--------------------------------------------------------------------------------
/app/src/main/res/layout/activity_more_about_download.xml:
--------------------------------------------------------------------------------
1 |
2 |
7 |
8 |
14 |
15 |
22 |
23 |
27 |
--------------------------------------------------------------------------------
/app/src/main/res/layout/activity_search.xml:
--------------------------------------------------------------------------------
1 |
2 |
5 |
6 |
10 |
11 |
18 |
19 |
26 |
27 |
35 |
36 |
37 |
--------------------------------------------------------------------------------
/app/src/main/res/layout/activity_webview.xml:
--------------------------------------------------------------------------------
1 |
2 |
6 |
7 |
12 |
13 |
19 |
20 |
24 |
25 |
--------------------------------------------------------------------------------
/app/src/main/res/layout/dialog_torrent.xml:
--------------------------------------------------------------------------------
1 |
2 |
7 |
8 |
12 |
13 |
17 |
18 |
22 |
23 |
27 |
28 |
--------------------------------------------------------------------------------
/app/src/main/res/layout/fragment_base64.xml:
--------------------------------------------------------------------------------
1 |
2 |
7 |
8 |
14 |
15 |
24 |
25 |
31 |
--------------------------------------------------------------------------------
/app/src/main/res/layout/fragment_edit_profile_test.xml:
--------------------------------------------------------------------------------
1 |
2 |
7 |
8 |
15 |
16 |
22 |
23 |
28 |
29 |
34 |
35 |
--------------------------------------------------------------------------------
/app/src/main/res/layout/fragment_files.xml:
--------------------------------------------------------------------------------
1 |
2 |
7 |
8 |
12 |
13 |
19 |
20 |
21 |
24 |
25 |
30 |
31 |
36 |
37 |
--------------------------------------------------------------------------------
/app/src/main/res/layout/fragment_uris.xml:
--------------------------------------------------------------------------------
1 |
2 |
7 |
8 |
13 |
14 |
18 |
19 |
26 |
27 |
28 |
34 |
35 |
42 |
--------------------------------------------------------------------------------
/app/src/main/res/layout/item_add_download_bundle.xml:
--------------------------------------------------------------------------------
1 |
2 |
8 |
9 |
14 |
15 |
24 |
25 |
34 |
--------------------------------------------------------------------------------
/app/src/main/res/layout/item_bt_announce.xml:
--------------------------------------------------------------------------------
1 |
2 |
8 |
9 |
15 |
16 |
20 |
21 |
--------------------------------------------------------------------------------
/app/src/main/res/layout/item_directory.xml:
--------------------------------------------------------------------------------
1 |
2 |
9 |
10 |
16 |
17 |
24 |
--------------------------------------------------------------------------------
/app/src/main/res/layout/item_file_header.xml:
--------------------------------------------------------------------------------
1 |
2 |
10 |
11 |
19 |
--------------------------------------------------------------------------------
/app/src/main/res/layout/item_radio_condition.xml:
--------------------------------------------------------------------------------
1 |
2 |
--------------------------------------------------------------------------------
/app/src/main/res/layout/item_top_country.xml:
--------------------------------------------------------------------------------
1 |
2 |
6 |
7 |
12 |
13 |
17 |
18 |
--------------------------------------------------------------------------------
/app/src/main/res/layout/item_uri.xml:
--------------------------------------------------------------------------------
1 |
2 |
6 |
7 |
16 |
17 |
26 |
27 |
36 |
--------------------------------------------------------------------------------
/app/src/main/res/layout/sheet_dir.xml:
--------------------------------------------------------------------------------
1 |
2 |
7 |
8 |
12 |
13 |
17 |
18 |
22 |
23 |
28 |
29 |
34 |
35 |
40 |
--------------------------------------------------------------------------------
/app/src/main/res/layout/sheet_file.xml:
--------------------------------------------------------------------------------
1 |
2 |
7 |
8 |
12 |
13 |
17 |
18 |
22 |
23 |
28 |
29 |
34 |
35 |
40 |
--------------------------------------------------------------------------------
/app/src/main/res/layout/sheet_server.xml:
--------------------------------------------------------------------------------
1 |
2 |
10 |
11 |
16 |
17 |
21 |
22 |
26 |
27 |
32 |
--------------------------------------------------------------------------------
/app/src/main/res/layout/view_options.xml:
--------------------------------------------------------------------------------
1 |
2 |
6 |
7 |
13 |
14 |
21 |
22 |
33 |
34 |
35 |
39 |
--------------------------------------------------------------------------------
/app/src/main/res/menu/add_download.xml:
--------------------------------------------------------------------------------
1 |
10 |
--------------------------------------------------------------------------------
/app/src/main/res/menu/edit_profile.xml:
--------------------------------------------------------------------------------
1 |
2 |
--------------------------------------------------------------------------------
/app/src/main/res/menu/files_action_mode.xml:
--------------------------------------------------------------------------------
1 |
2 |
--------------------------------------------------------------------------------
/app/src/main/res/menu/in_app_downloader.xml:
--------------------------------------------------------------------------------
1 |
2 |
--------------------------------------------------------------------------------
/app/src/main/res/menu/main.xml:
--------------------------------------------------------------------------------
1 |
2 |
--------------------------------------------------------------------------------
/app/src/main/res/menu/main_sorting.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
6 |
7 |
11 |
12 |
15 |
16 |
19 |
20 |
23 |
24 |
27 |
28 |
31 |
--------------------------------------------------------------------------------
/app/src/main/res/menu/more_about_download.xml:
--------------------------------------------------------------------------------
1 |
2 |
4 |
5 |
10 |
11 |
15 |
16 |
20 |
--------------------------------------------------------------------------------
/app/src/main/res/menu/peers_fragment.xml:
--------------------------------------------------------------------------------
1 |
2 |
4 | -
9 |
10 |
11 |
--------------------------------------------------------------------------------
/app/src/main/res/menu/peers_fragment_sorting.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
7 |
8 |
11 |
--------------------------------------------------------------------------------
/app/src/main/res/menu/search.xml:
--------------------------------------------------------------------------------
1 |
2 |
4 |
10 |
11 |
16 |
--------------------------------------------------------------------------------
/app/src/main/res/menu/web_view.xml:
--------------------------------------------------------------------------------
1 |
2 |
4 |
5 |
10 |
11 |
16 |
17 |
21 |
22 |
25 |
--------------------------------------------------------------------------------
/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
--------------------------------------------------------------------------------
/app/src/main/res/mipmap-hdpi/ic_launcher.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/devgianlu/Aria2App/5c85948d549ab2a9de65012bd6cfb14d8bc20671/app/src/main/res/mipmap-hdpi/ic_launcher.png
--------------------------------------------------------------------------------
/app/src/main/res/mipmap-hdpi/ic_launcher_foreground.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/devgianlu/Aria2App/5c85948d549ab2a9de65012bd6cfb14d8bc20671/app/src/main/res/mipmap-hdpi/ic_launcher_foreground.png
--------------------------------------------------------------------------------
/app/src/main/res/mipmap-hdpi/ic_launcher_round.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/devgianlu/Aria2App/5c85948d549ab2a9de65012bd6cfb14d8bc20671/app/src/main/res/mipmap-hdpi/ic_launcher_round.png
--------------------------------------------------------------------------------
/app/src/main/res/mipmap-mdpi/ic_launcher.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/devgianlu/Aria2App/5c85948d549ab2a9de65012bd6cfb14d8bc20671/app/src/main/res/mipmap-mdpi/ic_launcher.png
--------------------------------------------------------------------------------
/app/src/main/res/mipmap-mdpi/ic_launcher_foreground.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/devgianlu/Aria2App/5c85948d549ab2a9de65012bd6cfb14d8bc20671/app/src/main/res/mipmap-mdpi/ic_launcher_foreground.png
--------------------------------------------------------------------------------
/app/src/main/res/mipmap-mdpi/ic_launcher_round.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/devgianlu/Aria2App/5c85948d549ab2a9de65012bd6cfb14d8bc20671/app/src/main/res/mipmap-mdpi/ic_launcher_round.png
--------------------------------------------------------------------------------
/app/src/main/res/mipmap-xhdpi/ic_launcher.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/devgianlu/Aria2App/5c85948d549ab2a9de65012bd6cfb14d8bc20671/app/src/main/res/mipmap-xhdpi/ic_launcher.png
--------------------------------------------------------------------------------
/app/src/main/res/mipmap-xhdpi/ic_launcher_foreground.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/devgianlu/Aria2App/5c85948d549ab2a9de65012bd6cfb14d8bc20671/app/src/main/res/mipmap-xhdpi/ic_launcher_foreground.png
--------------------------------------------------------------------------------
/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/devgianlu/Aria2App/5c85948d549ab2a9de65012bd6cfb14d8bc20671/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png
--------------------------------------------------------------------------------
/app/src/main/res/mipmap-xxhdpi/ic_launcher.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/devgianlu/Aria2App/5c85948d549ab2a9de65012bd6cfb14d8bc20671/app/src/main/res/mipmap-xxhdpi/ic_launcher.png
--------------------------------------------------------------------------------
/app/src/main/res/mipmap-xxhdpi/ic_launcher_foreground.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/devgianlu/Aria2App/5c85948d549ab2a9de65012bd6cfb14d8bc20671/app/src/main/res/mipmap-xxhdpi/ic_launcher_foreground.png
--------------------------------------------------------------------------------
/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/devgianlu/Aria2App/5c85948d549ab2a9de65012bd6cfb14d8bc20671/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png
--------------------------------------------------------------------------------
/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/devgianlu/Aria2App/5c85948d549ab2a9de65012bd6cfb14d8bc20671/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png
--------------------------------------------------------------------------------
/app/src/main/res/mipmap-xxxhdpi/ic_launcher_foreground.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/devgianlu/Aria2App/5c85948d549ab2a9de65012bd6cfb14d8bc20671/app/src/main/res/mipmap-xxxhdpi/ic_launcher_foreground.png
--------------------------------------------------------------------------------
/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/devgianlu/Aria2App/5c85948d549ab2a9de65012bd6cfb14d8bc20671/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png
--------------------------------------------------------------------------------
/app/src/main/res/raw/translators.json:
--------------------------------------------------------------------------------
1 | [
2 | {
3 | "name": "DazzyWalkman",
4 | "link": "https://github.com/DazzyWalkman",
5 | "languages": [
6 | "Chinese (simplified)"
7 | ]
8 | },
9 | {
10 | "name": "Wagg13",
11 | "link": "https://crowdin.com/profile/Wagg13",
12 | "languages": [
13 | "Brazilian Portuguese"
14 | ]
15 | },
16 | {
17 | "name": "lumiru",
18 | "link": "https://github.com/lumiru",
19 | "languages": [
20 | "French"
21 | ]
22 | }
23 | ]
--------------------------------------------------------------------------------
/app/src/main/res/values-ar-rSA/strings.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
--------------------------------------------------------------------------------
/app/src/main/res/values-cs-rCZ/strings.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
--------------------------------------------------------------------------------
/app/src/main/res/values-da-rDK/strings.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
--------------------------------------------------------------------------------
/app/src/main/res/values-de-rDE/strings.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
--------------------------------------------------------------------------------
/app/src/main/res/values-el-rGR/strings.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
--------------------------------------------------------------------------------
/app/src/main/res/values-en-rUS/strings.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
--------------------------------------------------------------------------------
/app/src/main/res/values-fi-rFI/strings.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
--------------------------------------------------------------------------------
/app/src/main/res/values-hu-rHU/strings.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
--------------------------------------------------------------------------------
/app/src/main/res/values-it-rIT/strings.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
--------------------------------------------------------------------------------
/app/src/main/res/values-iw-rIL/strings.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
--------------------------------------------------------------------------------
/app/src/main/res/values-ja-rJP/strings.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
--------------------------------------------------------------------------------
/app/src/main/res/values-land/styles.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
7 |
--------------------------------------------------------------------------------
/app/src/main/res/values-night/colors.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 | #ff6f43
4 | #f4501e
5 | #ffffff
6 |
7 | #ff6f43
8 | #f4501e
9 | #ffffff
10 |
--------------------------------------------------------------------------------
/app/src/main/res/values-night/styles.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
7 |
8 |
9 |
19 |
20 |
21 |
25 |
26 |
27 |
30 |
31 |
34 |
--------------------------------------------------------------------------------
/app/src/main/res/values-nl-rNL/strings.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
--------------------------------------------------------------------------------
/app/src/main/res/values-no-rNO/strings.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
--------------------------------------------------------------------------------
/app/src/main/res/values-or-rIN/strings.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 | ଉପଭୋକ୍ତା - ପାସ୍ୱର୍ଡ଼
6 |
7 | ତ୍ରୁଟି
8 | ଅଜ୍ଞାତ
9 | ସକ୍ରିୟ
10 | ସୂଚନା
11 |
12 |
--------------------------------------------------------------------------------
/app/src/main/res/values-pl-rPL/strings.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
--------------------------------------------------------------------------------
/app/src/main/res/values-pt-rPT/strings.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
--------------------------------------------------------------------------------
/app/src/main/res/values-sr-rSP/strings.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
--------------------------------------------------------------------------------
/app/src/main/res/values-sv-rSE/strings.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
--------------------------------------------------------------------------------
/app/src/main/res/values-sw600dp/bools.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 | true
4 |
--------------------------------------------------------------------------------
/app/src/main/res/values-sw600dp/styles.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
7 |
--------------------------------------------------------------------------------
/app/src/main/res/values-tr-rTR/strings.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
--------------------------------------------------------------------------------
/app/src/main/res/values-v21/styles.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
7 |
--------------------------------------------------------------------------------
/app/src/main/res/values/bools.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 | false
4 |
--------------------------------------------------------------------------------
/app/src/main/res/xml/main_searchable.xml:
--------------------------------------------------------------------------------
1 |
2 |
--------------------------------------------------------------------------------
/app/src/main/res/xml/network_security_config.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
--------------------------------------------------------------------------------
/app/src/main/res/xml/provider_paths.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
6 |
--------------------------------------------------------------------------------
/app/src/main/res/xml/torrent_searchable.xml:
--------------------------------------------------------------------------------
1 |
2 |
--------------------------------------------------------------------------------
/app/src/standard/google-services.json:
--------------------------------------------------------------------------------
1 | {
2 | "project_info": {
3 | "project_number": "224100428237",
4 | "firebase_url": "https://aria2app-android.firebaseio.com",
5 | "project_id": "aria2app-android",
6 | "storage_bucket": "aria2app-android.appspot.com"
7 | },
8 | "client": [
9 | {
10 | "client_info": {
11 | "mobilesdk_app_id": "1:224100428237:android:af6ff887b27c8100177c84",
12 | "android_client_info": {
13 | "package_name": "com.gianlu.aria2app"
14 | }
15 | },
16 | "oauth_client": [
17 | {
18 | "client_id": "224100428237-6ju7ske3ii9pj886psj2h3tipm470jko.apps.googleusercontent.com",
19 | "client_type": 3
20 | }
21 | ],
22 | "api_key": [
23 | {
24 | "current_key": "AIzaSyBNfaEjfRWN0UoIdUxcFxaXAQ0cldOj5Jk"
25 | }
26 | ],
27 | "services": {
28 | "appinvite_service": {
29 | "other_platform_oauth_client": [
30 | {
31 | "client_id": "224100428237-6ju7ske3ii9pj886psj2h3tipm470jko.apps.googleusercontent.com",
32 | "client_type": 3
33 | }
34 | ]
35 | }
36 | }
37 | }
38 | ],
39 | "configuration_version": "1"
40 | }
--------------------------------------------------------------------------------
/build.gradle:
--------------------------------------------------------------------------------
1 | plugins {
2 | id 'com.android.application' version '8.6.0' apply false
3 | id 'com.google.gms.google-services' version '4.4.2' apply false
4 | id 'com.google.firebase.crashlytics' version '3.0.2' apply false
5 | }
6 |
--------------------------------------------------------------------------------
/crowdin.yml:
--------------------------------------------------------------------------------
1 | files:
2 | - source: /app/src/main/res/values/strings.xml
3 | translation: /app/src/main/res/values-%android_code%/strings.xml
4 | - source: /app/src/main/play/listings/en-GB/**-description.txt
5 | translation: /app/src/main/play/listings/%locale%/%original_file_name%
6 |
--------------------------------------------------------------------------------
/gradle.properties:
--------------------------------------------------------------------------------
1 | android.useAndroidX=true
2 | android.enableJetifier=true
3 | org.gradle.jvmargs=-Xmx1024m
4 | android.nonTransitiveRClass=false
5 | android.nonFinalResIds=false
6 |
--------------------------------------------------------------------------------
/gradle/wrapper/gradle-wrapper.jar:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/devgianlu/Aria2App/5c85948d549ab2a9de65012bd6cfb14d8bc20671/gradle/wrapper/gradle-wrapper.jar
--------------------------------------------------------------------------------
/gradle/wrapper/gradle-wrapper.properties:
--------------------------------------------------------------------------------
1 | #Tue Jul 19 18:12:07 CEST 2022
2 | distributionBase=GRADLE_USER_HOME
3 | distributionUrl=https\://services.gradle.org/distributions/gradle-8.7-bin.zip
4 | distributionPath=wrapper/dists
5 | zipStorePath=wrapper/dists
6 | zipStoreBase=GRADLE_USER_HOME
7 |
--------------------------------------------------------------------------------
/settings.gradle:
--------------------------------------------------------------------------------
1 | pluginManagement {
2 | repositories {
3 | google {
4 | content {
5 | includeGroupByRegex("com\\.android.*")
6 | includeGroupByRegex("com\\.google.*")
7 | includeGroupByRegex("androidx.*")
8 | }
9 | }
10 | mavenCentral()
11 | gradlePluginPortal()
12 | }
13 | }
14 |
15 | dependencyResolutionManagement {
16 | repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS)
17 | repositories {
18 | google()
19 | mavenCentral()
20 | maven { url "https://jitpack.io" }
21 | }
22 | }
23 |
24 | include ':CommonUtils', ':aria2lib', ':app'
25 | project(':CommonUtils').projectDir = new File('./CommonUtils')
26 | project(':aria2lib').projectDir = new File('./aria2lib')
--------------------------------------------------------------------------------