> path;
7 | return 0;
8 |
9 | }
10 | int mmm(){
11 |
12 |
13 |
14 | }
--------------------------------------------------------------------------------
/app/src/main/java/Ninja/coder/Ghostemane/code/io/github/rosemoe/sora/langs/svg/a.java:
--------------------------------------------------------------------------------
1 | package Ninja.coder.Ghostemane.code.io.github.rosemoe.sora.langs.svg;
2 |
3 | public class a {
4 |
5 | }
6 |
--------------------------------------------------------------------------------
/app/src/main/java/Ninja/coder/Ghostemane/code/io/github/rosemoe/sora/langs/xml/ProterStramSom.java:
--------------------------------------------------------------------------------
1 | package io.github.rosemoe.sora.langs.xml;
2 |
3 | public class ProterStramSom {
4 |
5 | public static void msor(String[] rando){
6 |
7 | System.out.println("اخی بیچاره دنبال کد من بودی؟");
8 |
9 |
10 | }
11 |
12 | }
13 |
--------------------------------------------------------------------------------
/app/src/main/java/Ninja/coder/Ghostemane/code/kellinwood/logging/LogWriter.java:
--------------------------------------------------------------------------------
1 | package kellinwood.logging;
2 |
3 | /**
4 | * User: ken
5 | * Date: 1/30/13
6 | */
7 | public interface LogWriter {
8 |
9 | void write(String level, String category, String message, Throwable t);
10 | }
11 |
--------------------------------------------------------------------------------
/app/src/main/java/Ninja/coder/Ghostemane/code/mod/agus/jcoderz/dx/cf/attrib/package.html:
--------------------------------------------------------------------------------
1 |
2 | Implementation of containers and utilities for all the standard Java
3 | attribute types.
4 |
5 | PACKAGES USED:
6 |
7 | com.android.dx.cf.iface
8 | com.android.dx.rop.pool
9 | com.android.dx.util
10 |
11 |
12 |
--------------------------------------------------------------------------------
/app/src/main/java/Ninja/coder/Ghostemane/code/mod/agus/jcoderz/dx/cf/code/package.html:
--------------------------------------------------------------------------------
1 |
2 | Implementation of classes having to do with Java simulation, such as
3 | is needed for verification or stack-to-register conversion.
4 |
5 | PACKAGES USED:
6 |
7 | com.android.dx.rop.pool
8 | com.android.dx.util
9 |
10 |
11 |
--------------------------------------------------------------------------------
/app/src/main/java/Ninja/coder/Ghostemane/code/mod/agus/jcoderz/dx/cf/iface/package.html:
--------------------------------------------------------------------------------
1 |
2 | Interfaces and base classes for dealing with class files. This package
3 | doesn't have any parsing but does have basic container implementations.
4 |
5 | PACKAGES USED:
6 |
7 | com.android.dx.rop.pool
8 | com.android.dx.util
9 |
10 |
11 |
--------------------------------------------------------------------------------
/app/src/main/java/Ninja/coder/Ghostemane/code/mod/agus/jcoderz/dx/rop/code/package.html:
--------------------------------------------------------------------------------
1 |
2 | Classes relating to a register-based opcode system.
3 |
4 | PACKAGES USED:
5 |
6 | com.android.dx.util
7 |
8 |
9 |
--------------------------------------------------------------------------------
/app/src/main/java/Ninja/coder/Ghostemane/code/mod/agus/jcoderz/dx/rop/cst/package.html:
--------------------------------------------------------------------------------
1 |
2 | Interfaces and implementation of things related to the constant pool.
3 |
4 | PACKAGES USED:
5 |
6 | com.android.dx.rop.type
7 | com.android.dx.util
8 |
9 |
10 |
--------------------------------------------------------------------------------
/app/src/main/java/Ninja/coder/Ghostemane/code/mod/agus/jcoderz/dx/rop/type/package.html:
--------------------------------------------------------------------------------
1 |
2 | Implementation of classes that represent types (classes or primitives).
3 |
4 | PACKAGES USED:
5 |
6 | com.android.dx.util
7 |
8 |
9 |
--------------------------------------------------------------------------------
/app/src/main/java/Ninja/coder/Ghostemane/code/mod/agus/jcoderz/dx/util/package.html:
--------------------------------------------------------------------------------
1 |
2 | Utility classes for class file access/manipulation.
3 |
4 |
--------------------------------------------------------------------------------
/app/src/main/java/Ninja/coder/Ghostemane/code/net/lingala/zip4j/headers/VersionMadeBy.java:
--------------------------------------------------------------------------------
1 | package net.lingala.zip4j.headers;
2 |
3 | public enum VersionMadeBy {
4 |
5 | SPECIFICATION_VERSION((byte) 51),
6 | WINDOWS((byte) 0),
7 | UNIX((byte) 3);
8 |
9 | private final byte code;
10 |
11 | VersionMadeBy(byte code) {
12 | this.code = code;
13 | }
14 |
15 | public byte getCode() {
16 | return code;
17 | }
18 | }
19 |
--------------------------------------------------------------------------------
/app/src/main/java/Ninja/coder/Ghostemane/code/net/lingala/zip4j/io/inputstream/StoreInputStream.java:
--------------------------------------------------------------------------------
1 | package net.lingala.zip4j.io.inputstream;
2 |
3 | class StoreInputStream extends DecompressedInputStream {
4 |
5 | public StoreInputStream(CipherInputStream cipherInputStream) {
6 | super(cipherInputStream);
7 | }
8 | }
9 |
--------------------------------------------------------------------------------
/app/src/main/java/Ninja/coder/Ghostemane/code/net/lingala/zip4j/io/outputstream/OutputStreamWithSplitZipSupport.java:
--------------------------------------------------------------------------------
1 | package net.lingala.zip4j.io.outputstream;
2 |
3 | import java.io.IOException;
4 |
5 | public interface OutputStreamWithSplitZipSupport {
6 |
7 | long getFilePointer() throws IOException;
8 |
9 | int getCurrentSplitFileCounter();
10 | }
11 |
--------------------------------------------------------------------------------
/app/src/main/java/Ninja/coder/Ghostemane/code/net/lingala/zip4j/io/outputstream/StoreOutputStream.java:
--------------------------------------------------------------------------------
1 | package net.lingala.zip4j.io.outputstream;
2 |
3 | class StoreOutputStream extends CompressedOutputStream {
4 |
5 | public StoreOutputStream(CipherOutputStream cipherOutputStream) {
6 | super(cipherOutputStream);
7 | }
8 |
9 | }
10 |
--------------------------------------------------------------------------------
/app/src/main/java/Ninja/coder/Ghostemane/code/net/lingala/zip4j/model/ExcludeFileFilter.java:
--------------------------------------------------------------------------------
1 | package net.lingala.zip4j.model;
2 |
3 | import java.io.File;
4 |
5 | public interface ExcludeFileFilter {
6 |
7 | boolean isExcluded(File file);
8 |
9 | }
10 |
--------------------------------------------------------------------------------
/app/src/main/java/Ninja/coder/Ghostemane/code/net/lingala/zip4j/model/enums/RandomAccessFileMode.java:
--------------------------------------------------------------------------------
1 | package net.lingala.zip4j.model.enums;
2 |
3 | public enum RandomAccessFileMode {
4 |
5 | READ("r"),
6 | WRITE("rw");
7 |
8 | private String value;
9 |
10 | RandomAccessFileMode(String value) {
11 | this.value = value;
12 | }
13 |
14 | public String getValue() {
15 | return value;
16 | }
17 | }
18 |
--------------------------------------------------------------------------------
/app/src/main/java/Ninja/coder/Ghostemane/code/net/lingala/zip4j/tasks/AbstractZipTaskParameters.java:
--------------------------------------------------------------------------------
1 | package net.lingala.zip4j.tasks;
2 |
3 | import net.lingala.zip4j.model.Zip4jConfig;
4 |
5 | public abstract class AbstractZipTaskParameters {
6 |
7 | protected Zip4jConfig zip4jConfig;
8 |
9 | protected AbstractZipTaskParameters(Zip4jConfig zip4jConfig) {
10 | this.zip4jConfig = zip4jConfig;
11 | }
12 | }
13 |
--------------------------------------------------------------------------------
/app/src/main/java/Ninja/coder/Ghostemane/code/net/lingala/zip4j/util/PasswordCallback.java:
--------------------------------------------------------------------------------
1 | package net.lingala.zip4j.util;
2 |
3 | public interface PasswordCallback {
4 |
5 | char[] getPassword();
6 | }
7 |
--------------------------------------------------------------------------------
/app/src/main/java/Ninja/coder/Ghostemane/code/project/gouid/bolde.java:
--------------------------------------------------------------------------------
1 | package Ninja.coder.Ghostemane.code.project.gouid;
2 |
3 | public class bolde {
4 |
5 | }
6 |
--------------------------------------------------------------------------------
/app/src/main/java/Ninja/coder/Ghostemane/code/project/gouid/serif.java:
--------------------------------------------------------------------------------
1 | package project.gouid;
2 |
3 | public class serif {
4 |
5 | public void nullpor(int v , char a ,boolean w){
6 |
7 | }
8 | public boolean charset(char b , boolean bool){
9 |
10 | if(bool){
11 | bool = true;
12 |
13 | }else{
14 | bool = false;
15 | }
16 | return bool;
17 | }
18 | }
19 |
--------------------------------------------------------------------------------
/app/src/main/res/anim/amin.md:
--------------------------------------------------------------------------------
1 |
2 |
--------------------------------------------------------------------------------
/app/src/main/res/drawable-hdpi/dkplayer_ic_action_arrow_back.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Arashvscode/Ghostwebapp/d5d268e826247ea24b9b5eccdc4be0589f34aaa8/app/src/main/res/drawable-hdpi/dkplayer_ic_action_arrow_back.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-hdpi/dkplayer_ic_action_autorenew.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Arashvscode/Ghostwebapp/d5d268e826247ea24b9b5eccdc4be0589f34aaa8/app/src/main/res/drawable-hdpi/dkplayer_ic_action_autorenew.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-hdpi/dkplayer_ic_action_battery.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Arashvscode/Ghostwebapp/d5d268e826247ea24b9b5eccdc4be0589f34aaa8/app/src/main/res/drawable-hdpi/dkplayer_ic_action_battery.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-hdpi/dkplayer_ic_action_battery_10.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Arashvscode/Ghostwebapp/d5d268e826247ea24b9b5eccdc4be0589f34aaa8/app/src/main/res/drawable-hdpi/dkplayer_ic_action_battery_10.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-hdpi/dkplayer_ic_action_battery_20.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Arashvscode/Ghostwebapp/d5d268e826247ea24b9b5eccdc4be0589f34aaa8/app/src/main/res/drawable-hdpi/dkplayer_ic_action_battery_20.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-hdpi/dkplayer_ic_action_battery_30.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Arashvscode/Ghostwebapp/d5d268e826247ea24b9b5eccdc4be0589f34aaa8/app/src/main/res/drawable-hdpi/dkplayer_ic_action_battery_30.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-hdpi/dkplayer_ic_action_battery_40.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Arashvscode/Ghostwebapp/d5d268e826247ea24b9b5eccdc4be0589f34aaa8/app/src/main/res/drawable-hdpi/dkplayer_ic_action_battery_40.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-hdpi/dkplayer_ic_action_battery_50.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Arashvscode/Ghostwebapp/d5d268e826247ea24b9b5eccdc4be0589f34aaa8/app/src/main/res/drawable-hdpi/dkplayer_ic_action_battery_50.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-hdpi/dkplayer_ic_action_battery_60.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Arashvscode/Ghostwebapp/d5d268e826247ea24b9b5eccdc4be0589f34aaa8/app/src/main/res/drawable-hdpi/dkplayer_ic_action_battery_60.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-hdpi/dkplayer_ic_action_battery_70.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Arashvscode/Ghostwebapp/d5d268e826247ea24b9b5eccdc4be0589f34aaa8/app/src/main/res/drawable-hdpi/dkplayer_ic_action_battery_70.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-hdpi/dkplayer_ic_action_battery_80.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Arashvscode/Ghostwebapp/d5d268e826247ea24b9b5eccdc4be0589f34aaa8/app/src/main/res/drawable-hdpi/dkplayer_ic_action_battery_80.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-hdpi/dkplayer_ic_action_battery_90.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Arashvscode/Ghostwebapp/d5d268e826247ea24b9b5eccdc4be0589f34aaa8/app/src/main/res/drawable-hdpi/dkplayer_ic_action_battery_90.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-hdpi/dkplayer_ic_action_brightness.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Arashvscode/Ghostwebapp/d5d268e826247ea24b9b5eccdc4be0589f34aaa8/app/src/main/res/drawable-hdpi/dkplayer_ic_action_brightness.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-hdpi/dkplayer_ic_action_close.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Arashvscode/Ghostwebapp/d5d268e826247ea24b9b5eccdc4be0589f34aaa8/app/src/main/res/drawable-hdpi/dkplayer_ic_action_close.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-hdpi/dkplayer_ic_action_fast_forward.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Arashvscode/Ghostwebapp/d5d268e826247ea24b9b5eccdc4be0589f34aaa8/app/src/main/res/drawable-hdpi/dkplayer_ic_action_fast_forward.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-hdpi/dkplayer_ic_action_fast_rewind.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Arashvscode/Ghostwebapp/d5d268e826247ea24b9b5eccdc4be0589f34aaa8/app/src/main/res/drawable-hdpi/dkplayer_ic_action_fast_rewind.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-hdpi/dkplayer_ic_action_fullscreen.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Arashvscode/Ghostwebapp/d5d268e826247ea24b9b5eccdc4be0589f34aaa8/app/src/main/res/drawable-hdpi/dkplayer_ic_action_fullscreen.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-hdpi/dkplayer_ic_action_fullscreen_exit.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Arashvscode/Ghostwebapp/d5d268e826247ea24b9b5eccdc4be0589f34aaa8/app/src/main/res/drawable-hdpi/dkplayer_ic_action_fullscreen_exit.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-hdpi/dkplayer_ic_action_lock_close.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Arashvscode/Ghostwebapp/d5d268e826247ea24b9b5eccdc4be0589f34aaa8/app/src/main/res/drawable-hdpi/dkplayer_ic_action_lock_close.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-hdpi/dkplayer_ic_action_lock_open.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Arashvscode/Ghostwebapp/d5d268e826247ea24b9b5eccdc4be0589f34aaa8/app/src/main/res/drawable-hdpi/dkplayer_ic_action_lock_open.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-hdpi/dkplayer_ic_action_mirror.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Arashvscode/Ghostwebapp/d5d268e826247ea24b9b5eccdc4be0589f34aaa8/app/src/main/res/drawable-hdpi/dkplayer_ic_action_mirror.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-hdpi/dkplayer_ic_action_pause.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Arashvscode/Ghostwebapp/d5d268e826247ea24b9b5eccdc4be0589f34aaa8/app/src/main/res/drawable-hdpi/dkplayer_ic_action_pause.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-hdpi/dkplayer_ic_action_pip.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Arashvscode/Ghostwebapp/d5d268e826247ea24b9b5eccdc4be0589f34aaa8/app/src/main/res/drawable-hdpi/dkplayer_ic_action_pip.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-hdpi/dkplayer_ic_action_play_arrow.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Arashvscode/Ghostwebapp/d5d268e826247ea24b9b5eccdc4be0589f34aaa8/app/src/main/res/drawable-hdpi/dkplayer_ic_action_play_arrow.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-hdpi/dkplayer_ic_action_portion.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Arashvscode/Ghostwebapp/d5d268e826247ea24b9b5eccdc4be0589f34aaa8/app/src/main/res/drawable-hdpi/dkplayer_ic_action_portion.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-hdpi/dkplayer_ic_action_replay.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Arashvscode/Ghostwebapp/d5d268e826247ea24b9b5eccdc4be0589f34aaa8/app/src/main/res/drawable-hdpi/dkplayer_ic_action_replay.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-hdpi/dkplayer_ic_action_speed.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Arashvscode/Ghostwebapp/d5d268e826247ea24b9b5eccdc4be0589f34aaa8/app/src/main/res/drawable-hdpi/dkplayer_ic_action_speed.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-hdpi/dkplayer_ic_action_volume_off.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Arashvscode/Ghostwebapp/d5d268e826247ea24b9b5eccdc4be0589f34aaa8/app/src/main/res/drawable-hdpi/dkplayer_ic_action_volume_off.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-hdpi/dkplayer_ic_action_volume_up.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Arashvscode/Ghostwebapp/d5d268e826247ea24b9b5eccdc4be0589f34aaa8/app/src/main/res/drawable-hdpi/dkplayer_ic_action_volume_up.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-mdpi/dkplayer_ic_action_arrow_back.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Arashvscode/Ghostwebapp/d5d268e826247ea24b9b5eccdc4be0589f34aaa8/app/src/main/res/drawable-mdpi/dkplayer_ic_action_arrow_back.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-mdpi/dkplayer_ic_action_autorenew.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Arashvscode/Ghostwebapp/d5d268e826247ea24b9b5eccdc4be0589f34aaa8/app/src/main/res/drawable-mdpi/dkplayer_ic_action_autorenew.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-mdpi/dkplayer_ic_action_battery.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Arashvscode/Ghostwebapp/d5d268e826247ea24b9b5eccdc4be0589f34aaa8/app/src/main/res/drawable-mdpi/dkplayer_ic_action_battery.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-mdpi/dkplayer_ic_action_battery_10.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Arashvscode/Ghostwebapp/d5d268e826247ea24b9b5eccdc4be0589f34aaa8/app/src/main/res/drawable-mdpi/dkplayer_ic_action_battery_10.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-mdpi/dkplayer_ic_action_battery_20.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Arashvscode/Ghostwebapp/d5d268e826247ea24b9b5eccdc4be0589f34aaa8/app/src/main/res/drawable-mdpi/dkplayer_ic_action_battery_20.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-mdpi/dkplayer_ic_action_battery_30.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Arashvscode/Ghostwebapp/d5d268e826247ea24b9b5eccdc4be0589f34aaa8/app/src/main/res/drawable-mdpi/dkplayer_ic_action_battery_30.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-mdpi/dkplayer_ic_action_battery_40.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Arashvscode/Ghostwebapp/d5d268e826247ea24b9b5eccdc4be0589f34aaa8/app/src/main/res/drawable-mdpi/dkplayer_ic_action_battery_40.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-mdpi/dkplayer_ic_action_battery_50.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Arashvscode/Ghostwebapp/d5d268e826247ea24b9b5eccdc4be0589f34aaa8/app/src/main/res/drawable-mdpi/dkplayer_ic_action_battery_50.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-mdpi/dkplayer_ic_action_battery_60.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Arashvscode/Ghostwebapp/d5d268e826247ea24b9b5eccdc4be0589f34aaa8/app/src/main/res/drawable-mdpi/dkplayer_ic_action_battery_60.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-mdpi/dkplayer_ic_action_battery_70.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Arashvscode/Ghostwebapp/d5d268e826247ea24b9b5eccdc4be0589f34aaa8/app/src/main/res/drawable-mdpi/dkplayer_ic_action_battery_70.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-mdpi/dkplayer_ic_action_battery_80.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Arashvscode/Ghostwebapp/d5d268e826247ea24b9b5eccdc4be0589f34aaa8/app/src/main/res/drawable-mdpi/dkplayer_ic_action_battery_80.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-mdpi/dkplayer_ic_action_battery_90.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Arashvscode/Ghostwebapp/d5d268e826247ea24b9b5eccdc4be0589f34aaa8/app/src/main/res/drawable-mdpi/dkplayer_ic_action_battery_90.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-mdpi/dkplayer_ic_action_brightness.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Arashvscode/Ghostwebapp/d5d268e826247ea24b9b5eccdc4be0589f34aaa8/app/src/main/res/drawable-mdpi/dkplayer_ic_action_brightness.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-mdpi/dkplayer_ic_action_close.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Arashvscode/Ghostwebapp/d5d268e826247ea24b9b5eccdc4be0589f34aaa8/app/src/main/res/drawable-mdpi/dkplayer_ic_action_close.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-mdpi/dkplayer_ic_action_fast_forward.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Arashvscode/Ghostwebapp/d5d268e826247ea24b9b5eccdc4be0589f34aaa8/app/src/main/res/drawable-mdpi/dkplayer_ic_action_fast_forward.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-mdpi/dkplayer_ic_action_fast_rewind.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Arashvscode/Ghostwebapp/d5d268e826247ea24b9b5eccdc4be0589f34aaa8/app/src/main/res/drawable-mdpi/dkplayer_ic_action_fast_rewind.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-mdpi/dkplayer_ic_action_fullscreen.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Arashvscode/Ghostwebapp/d5d268e826247ea24b9b5eccdc4be0589f34aaa8/app/src/main/res/drawable-mdpi/dkplayer_ic_action_fullscreen.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-mdpi/dkplayer_ic_action_fullscreen_exit.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Arashvscode/Ghostwebapp/d5d268e826247ea24b9b5eccdc4be0589f34aaa8/app/src/main/res/drawable-mdpi/dkplayer_ic_action_fullscreen_exit.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-mdpi/dkplayer_ic_action_lock_close.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Arashvscode/Ghostwebapp/d5d268e826247ea24b9b5eccdc4be0589f34aaa8/app/src/main/res/drawable-mdpi/dkplayer_ic_action_lock_close.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-mdpi/dkplayer_ic_action_lock_open.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Arashvscode/Ghostwebapp/d5d268e826247ea24b9b5eccdc4be0589f34aaa8/app/src/main/res/drawable-mdpi/dkplayer_ic_action_lock_open.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-mdpi/dkplayer_ic_action_mirror.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Arashvscode/Ghostwebapp/d5d268e826247ea24b9b5eccdc4be0589f34aaa8/app/src/main/res/drawable-mdpi/dkplayer_ic_action_mirror.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-mdpi/dkplayer_ic_action_pause.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Arashvscode/Ghostwebapp/d5d268e826247ea24b9b5eccdc4be0589f34aaa8/app/src/main/res/drawable-mdpi/dkplayer_ic_action_pause.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-mdpi/dkplayer_ic_action_pip.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Arashvscode/Ghostwebapp/d5d268e826247ea24b9b5eccdc4be0589f34aaa8/app/src/main/res/drawable-mdpi/dkplayer_ic_action_pip.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-mdpi/dkplayer_ic_action_play_arrow.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Arashvscode/Ghostwebapp/d5d268e826247ea24b9b5eccdc4be0589f34aaa8/app/src/main/res/drawable-mdpi/dkplayer_ic_action_play_arrow.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-mdpi/dkplayer_ic_action_portion.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Arashvscode/Ghostwebapp/d5d268e826247ea24b9b5eccdc4be0589f34aaa8/app/src/main/res/drawable-mdpi/dkplayer_ic_action_portion.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-mdpi/dkplayer_ic_action_replay.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Arashvscode/Ghostwebapp/d5d268e826247ea24b9b5eccdc4be0589f34aaa8/app/src/main/res/drawable-mdpi/dkplayer_ic_action_replay.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-mdpi/dkplayer_ic_action_speed.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Arashvscode/Ghostwebapp/d5d268e826247ea24b9b5eccdc4be0589f34aaa8/app/src/main/res/drawable-mdpi/dkplayer_ic_action_speed.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-mdpi/dkplayer_ic_action_volume_off.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Arashvscode/Ghostwebapp/d5d268e826247ea24b9b5eccdc4be0589f34aaa8/app/src/main/res/drawable-mdpi/dkplayer_ic_action_volume_off.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-mdpi/dkplayer_ic_action_volume_up.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Arashvscode/Ghostwebapp/d5d268e826247ea24b9b5eccdc4be0589f34aaa8/app/src/main/res/drawable-mdpi/dkplayer_ic_action_volume_up.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-v4/key_abc.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Arashvscode/Ghostwebapp/d5d268e826247ea24b9b5eccdc4be0589f34aaa8/app/src/main/res/drawable-v4/key_abc.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-v4/key_abc_dark.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Arashvscode/Ghostwebapp/d5d268e826247ea24b9b5eccdc4be0589f34aaa8/app/src/main/res/drawable-v4/key_abc_dark.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-v4/key_plant.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Arashvscode/Ghostwebapp/d5d268e826247ea24b9b5eccdc4be0589f34aaa8/app/src/main/res/drawable-v4/key_plant.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-v4/key_plant_dark.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Arashvscode/Ghostwebapp/d5d268e826247ea24b9b5eccdc4be0589f34aaa8/app/src/main/res/drawable-v4/key_plant_dark.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-v4/key_symbol.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Arashvscode/Ghostwebapp/d5d268e826247ea24b9b5eccdc4be0589f34aaa8/app/src/main/res/drawable-v4/key_symbol.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-v4/key_symbol_dark.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Arashvscode/Ghostwebapp/d5d268e826247ea24b9b5eccdc4be0589f34aaa8/app/src/main/res/drawable-v4/key_symbol_dark.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xhdpi/alls.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Arashvscode/Ghostwebapp/d5d268e826247ea24b9b5eccdc4be0589f34aaa8/app/src/main/res/drawable-xhdpi/alls.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xhdpi/app_icon.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Arashvscode/Ghostwebapp/d5d268e826247ea24b9b5eccdc4be0589f34aaa8/app/src/main/res/drawable-xhdpi/app_icon.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xhdpi/arrow.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Arashvscode/Ghostwebapp/d5d268e826247ea24b9b5eccdc4be0589f34aaa8/app/src/main/res/drawable-xhdpi/arrow.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xhdpi/arrowr.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Arashvscode/Ghostwebapp/d5d268e826247ea24b9b5eccdc4be0589f34aaa8/app/src/main/res/drawable-xhdpi/arrowr.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xhdpi/close.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Arashvscode/Ghostwebapp/d5d268e826247ea24b9b5eccdc4be0589f34aaa8/app/src/main/res/drawable-xhdpi/close.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xhdpi/codeformat.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Arashvscode/Ghostwebapp/d5d268e826247ea24b9b5eccdc4be0589f34aaa8/app/src/main/res/drawable-xhdpi/codeformat.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xhdpi/cog.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Arashvscode/Ghostwebapp/d5d268e826247ea24b9b5eccdc4be0589f34aaa8/app/src/main/res/drawable-xhdpi/cog.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xhdpi/color.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Arashvscode/Ghostwebapp/d5d268e826247ea24b9b5eccdc4be0589f34aaa8/app/src/main/res/drawable-xhdpi/color.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xhdpi/console.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Arashvscode/Ghostwebapp/d5d268e826247ea24b9b5eccdc4be0589f34aaa8/app/src/main/res/drawable-xhdpi/console.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xhdpi/copys.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Arashvscode/Ghostwebapp/d5d268e826247ea24b9b5eccdc4be0589f34aaa8/app/src/main/res/drawable-xhdpi/copys.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xhdpi/css3.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Arashvscode/Ghostwebapp/d5d268e826247ea24b9b5eccdc4be0589f34aaa8/app/src/main/res/drawable-xhdpi/css3.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xhdpi/cuts.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Arashvscode/Ghostwebapp/d5d268e826247ea24b9b5eccdc4be0589f34aaa8/app/src/main/res/drawable-xhdpi/cuts.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xhdpi/default_image.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Arashvscode/Ghostwebapp/d5d268e826247ea24b9b5eccdc4be0589f34aaa8/app/src/main/res/drawable-xhdpi/default_image.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xhdpi/delete.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Arashvscode/Ghostwebapp/d5d268e826247ea24b9b5eccdc4be0589f34aaa8/app/src/main/res/drawable-xhdpi/delete.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xhdpi/deletear.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Arashvscode/Ghostwebapp/d5d268e826247ea24b9b5eccdc4be0589f34aaa8/app/src/main/res/drawable-xhdpi/deletear.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xhdpi/dkplayer_ic_action_arrow_back.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Arashvscode/Ghostwebapp/d5d268e826247ea24b9b5eccdc4be0589f34aaa8/app/src/main/res/drawable-xhdpi/dkplayer_ic_action_arrow_back.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xhdpi/dkplayer_ic_action_autorenew.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Arashvscode/Ghostwebapp/d5d268e826247ea24b9b5eccdc4be0589f34aaa8/app/src/main/res/drawable-xhdpi/dkplayer_ic_action_autorenew.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xhdpi/dkplayer_ic_action_battery.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Arashvscode/Ghostwebapp/d5d268e826247ea24b9b5eccdc4be0589f34aaa8/app/src/main/res/drawable-xhdpi/dkplayer_ic_action_battery.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xhdpi/dkplayer_ic_action_battery_10.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Arashvscode/Ghostwebapp/d5d268e826247ea24b9b5eccdc4be0589f34aaa8/app/src/main/res/drawable-xhdpi/dkplayer_ic_action_battery_10.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xhdpi/dkplayer_ic_action_battery_20.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Arashvscode/Ghostwebapp/d5d268e826247ea24b9b5eccdc4be0589f34aaa8/app/src/main/res/drawable-xhdpi/dkplayer_ic_action_battery_20.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xhdpi/dkplayer_ic_action_battery_30.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Arashvscode/Ghostwebapp/d5d268e826247ea24b9b5eccdc4be0589f34aaa8/app/src/main/res/drawable-xhdpi/dkplayer_ic_action_battery_30.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xhdpi/dkplayer_ic_action_battery_40.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Arashvscode/Ghostwebapp/d5d268e826247ea24b9b5eccdc4be0589f34aaa8/app/src/main/res/drawable-xhdpi/dkplayer_ic_action_battery_40.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xhdpi/dkplayer_ic_action_battery_50.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Arashvscode/Ghostwebapp/d5d268e826247ea24b9b5eccdc4be0589f34aaa8/app/src/main/res/drawable-xhdpi/dkplayer_ic_action_battery_50.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xhdpi/dkplayer_ic_action_battery_60.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Arashvscode/Ghostwebapp/d5d268e826247ea24b9b5eccdc4be0589f34aaa8/app/src/main/res/drawable-xhdpi/dkplayer_ic_action_battery_60.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xhdpi/dkplayer_ic_action_battery_70.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Arashvscode/Ghostwebapp/d5d268e826247ea24b9b5eccdc4be0589f34aaa8/app/src/main/res/drawable-xhdpi/dkplayer_ic_action_battery_70.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xhdpi/dkplayer_ic_action_battery_80.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Arashvscode/Ghostwebapp/d5d268e826247ea24b9b5eccdc4be0589f34aaa8/app/src/main/res/drawable-xhdpi/dkplayer_ic_action_battery_80.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xhdpi/dkplayer_ic_action_battery_90.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Arashvscode/Ghostwebapp/d5d268e826247ea24b9b5eccdc4be0589f34aaa8/app/src/main/res/drawable-xhdpi/dkplayer_ic_action_battery_90.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xhdpi/dkplayer_ic_action_brightness.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Arashvscode/Ghostwebapp/d5d268e826247ea24b9b5eccdc4be0589f34aaa8/app/src/main/res/drawable-xhdpi/dkplayer_ic_action_brightness.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xhdpi/dkplayer_ic_action_close.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Arashvscode/Ghostwebapp/d5d268e826247ea24b9b5eccdc4be0589f34aaa8/app/src/main/res/drawable-xhdpi/dkplayer_ic_action_close.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xhdpi/dkplayer_ic_action_fast_forward.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Arashvscode/Ghostwebapp/d5d268e826247ea24b9b5eccdc4be0589f34aaa8/app/src/main/res/drawable-xhdpi/dkplayer_ic_action_fast_forward.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xhdpi/dkplayer_ic_action_fast_rewind.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Arashvscode/Ghostwebapp/d5d268e826247ea24b9b5eccdc4be0589f34aaa8/app/src/main/res/drawable-xhdpi/dkplayer_ic_action_fast_rewind.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xhdpi/dkplayer_ic_action_fullscreen.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Arashvscode/Ghostwebapp/d5d268e826247ea24b9b5eccdc4be0589f34aaa8/app/src/main/res/drawable-xhdpi/dkplayer_ic_action_fullscreen.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xhdpi/dkplayer_ic_action_fullscreen_exit.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Arashvscode/Ghostwebapp/d5d268e826247ea24b9b5eccdc4be0589f34aaa8/app/src/main/res/drawable-xhdpi/dkplayer_ic_action_fullscreen_exit.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xhdpi/dkplayer_ic_action_lock_close.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Arashvscode/Ghostwebapp/d5d268e826247ea24b9b5eccdc4be0589f34aaa8/app/src/main/res/drawable-xhdpi/dkplayer_ic_action_lock_close.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xhdpi/dkplayer_ic_action_lock_open.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Arashvscode/Ghostwebapp/d5d268e826247ea24b9b5eccdc4be0589f34aaa8/app/src/main/res/drawable-xhdpi/dkplayer_ic_action_lock_open.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xhdpi/dkplayer_ic_action_pause.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Arashvscode/Ghostwebapp/d5d268e826247ea24b9b5eccdc4be0589f34aaa8/app/src/main/res/drawable-xhdpi/dkplayer_ic_action_pause.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xhdpi/dkplayer_ic_action_play_arrow.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Arashvscode/Ghostwebapp/d5d268e826247ea24b9b5eccdc4be0589f34aaa8/app/src/main/res/drawable-xhdpi/dkplayer_ic_action_play_arrow.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xhdpi/dkplayer_ic_action_replay.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Arashvscode/Ghostwebapp/d5d268e826247ea24b9b5eccdc4be0589f34aaa8/app/src/main/res/drawable-xhdpi/dkplayer_ic_action_replay.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xhdpi/dkplayer_ic_action_volume_off.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Arashvscode/Ghostwebapp/d5d268e826247ea24b9b5eccdc4be0589f34aaa8/app/src/main/res/drawable-xhdpi/dkplayer_ic_action_volume_off.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xhdpi/dkplayer_ic_action_volume_up.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Arashvscode/Ghostwebapp/d5d268e826247ea24b9b5eccdc4be0589f34aaa8/app/src/main/res/drawable-xhdpi/dkplayer_ic_action_volume_up.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xhdpi/exit.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Arashvscode/Ghostwebapp/d5d268e826247ea24b9b5eccdc4be0589f34aaa8/app/src/main/res/drawable-xhdpi/exit.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xhdpi/file.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Arashvscode/Ghostwebapp/d5d268e826247ea24b9b5eccdc4be0589f34aaa8/app/src/main/res/drawable-xhdpi/file.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xhdpi/fileadds.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Arashvscode/Ghostwebapp/d5d268e826247ea24b9b5eccdc4be0589f34aaa8/app/src/main/res/drawable-xhdpi/fileadds.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xhdpi/finalarrowdown.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Arashvscode/Ghostwebapp/d5d268e826247ea24b9b5eccdc4be0589f34aaa8/app/src/main/res/drawable-xhdpi/finalarrowdown.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xhdpi/finalarrowleft.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Arashvscode/Ghostwebapp/d5d268e826247ea24b9b5eccdc4be0589f34aaa8/app/src/main/res/drawable-xhdpi/finalarrowleft.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xhdpi/flash.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Arashvscode/Ghostwebapp/d5d268e826247ea24b9b5eccdc4be0589f34aaa8/app/src/main/res/drawable-xhdpi/flash.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xhdpi/focused.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Arashvscode/Ghostwebapp/d5d268e826247ea24b9b5eccdc4be0589f34aaa8/app/src/main/res/drawable-xhdpi/focused.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xhdpi/folder.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Arashvscode/Ghostwebapp/d5d268e826247ea24b9b5eccdc4be0589f34aaa8/app/src/main/res/drawable-xhdpi/folder.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xhdpi/folder3.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Arashvscode/Ghostwebapp/d5d268e826247ea24b9b5eccdc4be0589f34aaa8/app/src/main/res/drawable-xhdpi/folder3.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xhdpi/folderandroid.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Arashvscode/Ghostwebapp/d5d268e826247ea24b9b5eccdc4be0589f34aaa8/app/src/main/res/drawable-xhdpi/folderandroid.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xhdpi/foldercog.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Arashvscode/Ghostwebapp/d5d268e826247ea24b9b5eccdc4be0589f34aaa8/app/src/main/res/drawable-xhdpi/foldercog.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xhdpi/folderdownload.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Arashvscode/Ghostwebapp/d5d268e826247ea24b9b5eccdc4be0589f34aaa8/app/src/main/res/drawable-xhdpi/folderdownload.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xhdpi/folderhome.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Arashvscode/Ghostwebapp/d5d268e826247ea24b9b5eccdc4be0589f34aaa8/app/src/main/res/drawable-xhdpi/folderhome.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xhdpi/foldermusic.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Arashvscode/Ghostwebapp/d5d268e826247ea24b9b5eccdc4be0589f34aaa8/app/src/main/res/drawable-xhdpi/foldermusic.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xhdpi/fontlookimageview.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Arashvscode/Ghostwebapp/d5d268e826247ea24b9b5eccdc4be0589f34aaa8/app/src/main/res/drawable-xhdpi/fontlookimageview.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xhdpi/ghost1656335533012.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Arashvscode/Ghostwebapp/d5d268e826247ea24b9b5eccdc4be0589f34aaa8/app/src/main/res/drawable-xhdpi/ghost1656335533012.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xhdpi/github.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Arashvscode/Ghostwebapp/d5d268e826247ea24b9b5eccdc4be0589f34aaa8/app/src/main/res/drawable-xhdpi/github.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xhdpi/googleplay.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Arashvscode/Ghostwebapp/d5d268e826247ea24b9b5eccdc4be0589f34aaa8/app/src/main/res/drawable-xhdpi/googleplay.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xhdpi/html.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Arashvscode/Ghostwebapp/d5d268e826247ea24b9b5eccdc4be0589f34aaa8/app/src/main/res/drawable-xhdpi/html.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xhdpi/icon.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Arashvscode/Ghostwebapp/d5d268e826247ea24b9b5eccdc4be0589f34aaa8/app/src/main/res/drawable-xhdpi/icon.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xhdpi/information.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Arashvscode/Ghostwebapp/d5d268e826247ea24b9b5eccdc4be0589f34aaa8/app/src/main/res/drawable-xhdpi/information.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xhdpi/javanull.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Arashvscode/Ghostwebapp/d5d268e826247ea24b9b5eccdc4be0589f34aaa8/app/src/main/res/drawable-xhdpi/javanull.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xhdpi/js01.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Arashvscode/Ghostwebapp/d5d268e826247ea24b9b5eccdc4be0589f34aaa8/app/src/main/res/drawable-xhdpi/js01.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xhdpi/keyboard.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Arashvscode/Ghostwebapp/d5d268e826247ea24b9b5eccdc4be0589f34aaa8/app/src/main/res/drawable-xhdpi/keyboard.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xhdpi/keyboardlisnertalluserpost_1.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Arashvscode/Ghostwebapp/d5d268e826247ea24b9b5eccdc4be0589f34aaa8/app/src/main/res/drawable-xhdpi/keyboardlisnertalluserpost_1.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xhdpi/keyboardlisnertalluserpost_2.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Arashvscode/Ghostwebapp/d5d268e826247ea24b9b5eccdc4be0589f34aaa8/app/src/main/res/drawable-xhdpi/keyboardlisnertalluserpost_2.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xhdpi/keyboardlisnertalluserpost_3.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Arashvscode/Ghostwebapp/d5d268e826247ea24b9b5eccdc4be0589f34aaa8/app/src/main/res/drawable-xhdpi/keyboardlisnertalluserpost_3.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xhdpi/keyboardlisnertalluserpost_4.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Arashvscode/Ghostwebapp/d5d268e826247ea24b9b5eccdc4be0589f34aaa8/app/src/main/res/drawable-xhdpi/keyboardlisnertalluserpost_4.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xhdpi/languagego.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Arashvscode/Ghostwebapp/d5d268e826247ea24b9b5eccdc4be0589f34aaa8/app/src/main/res/drawable-xhdpi/languagego.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xhdpi/languagephp.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Arashvscode/Ghostwebapp/d5d268e826247ea24b9b5eccdc4be0589f34aaa8/app/src/main/res/drawable-xhdpi/languagephp.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xhdpi/laptopmod.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Arashvscode/Ghostwebapp/d5d268e826247ea24b9b5eccdc4be0589f34aaa8/app/src/main/res/drawable-xhdpi/laptopmod.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xhdpi/link.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Arashvscode/Ghostwebapp/d5d268e826247ea24b9b5eccdc4be0589f34aaa8/app/src/main/res/drawable-xhdpi/link.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xhdpi/log.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Arashvscode/Ghostwebapp/d5d268e826247ea24b9b5eccdc4be0589f34aaa8/app/src/main/res/drawable-xhdpi/log.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xhdpi/mobilemod.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Arashvscode/Ghostwebapp/d5d268e826247ea24b9b5eccdc4be0589f34aaa8/app/src/main/res/drawable-xhdpi/mobilemod.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xhdpi/musico.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Arashvscode/Ghostwebapp/d5d268e826247ea24b9b5eccdc4be0589f34aaa8/app/src/main/res/drawable-xhdpi/musico.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xhdpi/neon.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Arashvscode/Ghostwebapp/d5d268e826247ea24b9b5eccdc4be0589f34aaa8/app/src/main/res/drawable-xhdpi/neon.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xhdpi/noeye.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Arashvscode/Ghostwebapp/d5d268e826247ea24b9b5eccdc4be0589f34aaa8/app/src/main/res/drawable-xhdpi/noeye.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xhdpi/okeye.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Arashvscode/Ghostwebapp/d5d268e826247ea24b9b5eccdc4be0589f34aaa8/app/src/main/res/drawable-xhdpi/okeye.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xhdpi/opendes.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Arashvscode/Ghostwebapp/d5d268e826247ea24b9b5eccdc4be0589f34aaa8/app/src/main/res/drawable-xhdpi/opendes.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xhdpi/pastecode.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Arashvscode/Ghostwebapp/d5d268e826247ea24b9b5eccdc4be0589f34aaa8/app/src/main/res/drawable-xhdpi/pastecode.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xhdpi/pdfview.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Arashvscode/Ghostwebapp/d5d268e826247ea24b9b5eccdc4be0589f34aaa8/app/src/main/res/drawable-xhdpi/pdfview.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xhdpi/play.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Arashvscode/Ghostwebapp/d5d268e826247ea24b9b5eccdc4be0589f34aaa8/app/src/main/res/drawable-xhdpi/play.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xhdpi/plus.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Arashvscode/Ghostwebapp/d5d268e826247ea24b9b5eccdc4be0589f34aaa8/app/src/main/res/drawable-xhdpi/plus.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xhdpi/project.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Arashvscode/Ghostwebapp/d5d268e826247ea24b9b5eccdc4be0589f34aaa8/app/src/main/res/drawable-xhdpi/project.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xhdpi/rartarget.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Arashvscode/Ghostwebapp/d5d268e826247ea24b9b5eccdc4be0589f34aaa8/app/src/main/res/drawable-xhdpi/rartarget.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xhdpi/redo.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Arashvscode/Ghostwebapp/d5d268e826247ea24b9b5eccdc4be0589f34aaa8/app/src/main/res/drawable-xhdpi/redo.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xhdpi/refresh.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Arashvscode/Ghostwebapp/d5d268e826247ea24b9b5eccdc4be0589f34aaa8/app/src/main/res/drawable-xhdpi/refresh.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xhdpi/rename.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Arashvscode/Ghostwebapp/d5d268e826247ea24b9b5eccdc4be0589f34aaa8/app/src/main/res/drawable-xhdpi/rename.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xhdpi/resulttheme.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Arashvscode/Ghostwebapp/d5d268e826247ea24b9b5eccdc4be0589f34aaa8/app/src/main/res/drawable-xhdpi/resulttheme.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xhdpi/save.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Arashvscode/Ghostwebapp/d5d268e826247ea24b9b5eccdc4be0589f34aaa8/app/src/main/res/drawable-xhdpi/save.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xhdpi/savetext.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Arashvscode/Ghostwebapp/d5d268e826247ea24b9b5eccdc4be0589f34aaa8/app/src/main/res/drawable-xhdpi/savetext.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xhdpi/school.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Arashvscode/Ghostwebapp/d5d268e826247ea24b9b5eccdc4be0589f34aaa8/app/src/main/res/drawable-xhdpi/school.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xhdpi/sdcard.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Arashvscode/Ghostwebapp/d5d268e826247ea24b9b5eccdc4be0589f34aaa8/app/src/main/res/drawable-xhdpi/sdcard.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xhdpi/textsearch.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Arashvscode/Ghostwebapp/d5d268e826247ea24b9b5eccdc4be0589f34aaa8/app/src/main/res/drawable-xhdpi/textsearch.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xhdpi/txtfile.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Arashvscode/Ghostwebapp/d5d268e826247ea24b9b5eccdc4be0589f34aaa8/app/src/main/res/drawable-xhdpi/txtfile.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xhdpi/undos.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Arashvscode/Ghostwebapp/d5d268e826247ea24b9b5eccdc4be0589f34aaa8/app/src/main/res/drawable-xhdpi/undos.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xhdpi/unzip.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Arashvscode/Ghostwebapp/d5d268e826247ea24b9b5eccdc4be0589f34aaa8/app/src/main/res/drawable-xhdpi/unzip.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xhdpi/videothumplaese.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Arashvscode/Ghostwebapp/d5d268e826247ea24b9b5eccdc4be0589f34aaa8/app/src/main/res/drawable-xhdpi/videothumplaese.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xhdpi/webproject.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Arashvscode/Ghostwebapp/d5d268e826247ea24b9b5eccdc4be0589f34aaa8/app/src/main/res/drawable-xhdpi/webproject.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xhdpi/zipandtar.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Arashvscode/Ghostwebapp/d5d268e826247ea24b9b5eccdc4be0589f34aaa8/app/src/main/res/drawable-xhdpi/zipandtar.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xxhdpi-v4/black1_aa.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xxhdpi-v4/black1_aaa.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 | -
4 |
5 |
6 |
7 |
8 |
9 |
10 |
11 |
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xxhdpi-v4/black1_bb.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xxhdpi-v4/black1_bbb.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 | -
4 |
5 |
6 |
7 |
8 |
9 |
10 |
11 |
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xxhdpi-v4/black1_cc.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xxhdpi-v4/black1_ccc.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 | -
4 |
5 |
6 |
7 |
8 |
9 |
10 |
11 |
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xxhdpi-v4/black1_db.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xxhdpi-v4/black1_dd.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xxhdpi-v4/black1_ddd.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 | -
4 |
5 |
6 |
7 |
8 |
9 |
10 |
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xxhdpi-v4/black2_aa.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xxhdpi-v4/black2_aaa.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 | -
4 |
5 |
6 |
7 |
8 |
9 |
10 |
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xxhdpi-v4/black2_bb.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xxhdpi-v4/black2_bbb.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 | -
4 |
5 |
6 |
7 |
8 |
9 |
10 |
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xxhdpi-v4/black2_cc.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xxhdpi-v4/black2_ccc.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 | -
4 |
5 |
6 |
7 |
8 |
9 |
10 |
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xxhdpi-v4/black2_db.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xxhdpi-v4/black2_dd.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xxhdpi-v4/black2_ddd.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 | -
4 |
5 |
6 |
7 |
8 |
9 |
10 |
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xxhdpi-v4/blue_aa.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xxhdpi-v4/blue_aaa.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 | -
4 |
5 |
6 |
7 |
8 |
9 |
10 |
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xxhdpi-v4/blue_bb.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xxhdpi-v4/blue_bbb.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 | -
4 |
5 |
6 |
7 |
8 |
9 |
10 |
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xxhdpi-v4/blue_cc.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xxhdpi-v4/blue_ccc.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 | -
4 |
5 |
6 |
7 |
8 |
9 |
10 |
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xxhdpi-v4/blue_db.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xxhdpi-v4/blue_dd.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xxhdpi-v4/blue_ddd.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 | -
4 |
5 |
6 |
7 |
8 |
9 |
10 |
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xxhdpi-v4/boyish_aa.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Arashvscode/Ghostwebapp/d5d268e826247ea24b9b5eccdc4be0589f34aaa8/app/src/main/res/drawable-xxhdpi-v4/boyish_aa.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xxhdpi-v4/boyish_bb.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xxhdpi-v4/boyish_bbb.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Arashvscode/Ghostwebapp/d5d268e826247ea24b9b5eccdc4be0589f34aaa8/app/src/main/res/drawable-xxhdpi-v4/boyish_bbb.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xxhdpi-v4/boyish_cc.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Arashvscode/Ghostwebapp/d5d268e826247ea24b9b5eccdc4be0589f34aaa8/app/src/main/res/drawable-xxhdpi-v4/boyish_cc.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xxhdpi-v4/boyish_db.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xxhdpi-v4/boyish_ddd.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Arashvscode/Ghostwebapp/d5d268e826247ea24b9b5eccdc4be0589f34aaa8/app/src/main/res/drawable-xxhdpi-v4/boyish_ddd.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xxhdpi-v4/bright_aa.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xxhdpi-v4/bright_aaa.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 | -
4 |
5 |
6 |
7 |
8 |
9 |
10 |
11 |
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xxhdpi-v4/bright_bb.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xxhdpi-v4/bright_bbb.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 | -
4 |
5 |
6 |
7 |
8 |
9 |
10 |
11 |
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xxhdpi-v4/bright_cc.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xxhdpi-v4/bright_ccc.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 | -
4 |
5 |
6 |
7 |
8 |
9 |
10 |
11 |
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xxhdpi-v4/bright_db.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xxhdpi-v4/bright_dd.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xxhdpi-v4/bright_ddd.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 | -
4 |
5 |
6 |
7 |
8 |
9 |
10 |
11 |
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xxhdpi-v4/dark_aa.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xxhdpi-v4/dark_aaa.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 | -
4 |
5 |
6 |
7 |
8 |
9 |
10 |
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xxhdpi-v4/dark_bb.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xxhdpi-v4/dark_bbb.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 | -
4 |
5 |
6 |
7 |
8 |
9 |
10 |
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xxhdpi-v4/dark_cc.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xxhdpi-v4/dark_ccc.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 | -
4 |
5 |
6 |
7 |
8 |
9 |
10 |
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xxhdpi-v4/dark_db.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xxhdpi-v4/dark_dd.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xxhdpi-v4/dark_ddd.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 | -
4 |
5 |
6 |
7 |
8 |
9 |
10 |
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xxhdpi-v4/dp_aa.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xxhdpi-v4/dp_aaa.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 | -
4 |
5 |
6 |
7 |
8 |
9 |
10 |
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xxhdpi-v4/dp_bb.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xxhdpi-v4/dp_bbb.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 | -
4 |
5 |
6 |
7 |
8 |
9 |
10 |
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xxhdpi-v4/dp_cc.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xxhdpi-v4/dp_ccc.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 | -
4 |
5 |
6 |
7 |
8 |
9 |
10 |
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xxhdpi-v4/dp_db.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xxhdpi-v4/dp_dd.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xxhdpi-v4/dp_ddd.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 | -
4 |
5 |
6 |
7 |
8 |
9 |
10 |
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xxhdpi-v4/full_bright_aa.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xxhdpi-v4/full_bright_aaa.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 | -
4 |
5 |
6 |
7 |
8 |
9 |
10 |
11 |
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xxhdpi-v4/full_bright_bb.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xxhdpi-v4/full_bright_bbb.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 | -
4 |
5 |
6 |
7 |
8 |
9 |
10 |
11 |
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xxhdpi-v4/full_bright_cc.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xxhdpi-v4/full_bright_ccc.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 | -
4 |
5 |
6 |
7 |
8 |
9 |
10 |
11 |
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xxhdpi-v4/full_bright_db.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xxhdpi-v4/full_bright_dd.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xxhdpi-v4/full_bright_ddd.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 | -
4 |
5 |
6 |
7 |
8 |
9 |
10 |
11 |
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xxhdpi-v4/full_dark_aa.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xxhdpi-v4/full_dark_aaa.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 | -
4 |
5 |
6 |
7 |
8 |
9 |
10 |
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xxhdpi-v4/full_dark_bb.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xxhdpi-v4/full_dark_bbb.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 | -
4 |
5 |
6 |
7 |
8 |
9 |
10 |
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xxhdpi-v4/full_dark_cc.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xxhdpi-v4/full_dark_ccc.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 | -
4 |
5 |
6 |
7 |
8 |
9 |
10 |
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xxhdpi-v4/full_dark_db.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xxhdpi-v4/full_dark_dd.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xxhdpi-v4/full_dark_ddd.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 | -
4 |
5 |
6 |
7 |
8 |
9 |
10 |
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xxhdpi-v4/girly_aa.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Arashvscode/Ghostwebapp/d5d268e826247ea24b9b5eccdc4be0589f34aaa8/app/src/main/res/drawable-xxhdpi-v4/girly_aa.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xxhdpi-v4/girly_bb.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xxhdpi-v4/girly_bbb.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Arashvscode/Ghostwebapp/d5d268e826247ea24b9b5eccdc4be0589f34aaa8/app/src/main/res/drawable-xxhdpi-v4/girly_bbb.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xxhdpi-v4/girly_cc.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Arashvscode/Ghostwebapp/d5d268e826247ea24b9b5eccdc4be0589f34aaa8/app/src/main/res/drawable-xxhdpi-v4/girly_cc.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xxhdpi-v4/girly_db.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xxhdpi-v4/girly_ddd.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Arashvscode/Ghostwebapp/d5d268e826247ea24b9b5eccdc4be0589f34aaa8/app/src/main/res/drawable-xxhdpi-v4/girly_ddd.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xxhdpi-v4/glass_aa.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 | -
4 |
5 |
6 |
7 |
8 |
9 |
10 |
11 |
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xxhdpi-v4/glass_bb.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 | -
4 |
5 |
6 |
7 |
8 |
9 |
10 |
11 |
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xxhdpi-v4/glass_cc.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 | -
4 |
5 |
6 |
7 |
8 |
9 |
10 |
11 |
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xxhdpi-v4/glass_dd.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 | -
4 |
5 |
6 |
7 |
8 |
9 |
10 |
11 |
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xxhdpi-v4/yellow_aa.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xxhdpi-v4/yellow_aaa.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 | -
4 |
5 |
6 |
7 |
8 |
9 |
10 |
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xxhdpi-v4/yellow_bb.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xxhdpi-v4/yellow_bbb.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 | -
4 |
5 |
6 |
7 |
8 |
9 |
10 |
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xxhdpi-v4/yellow_cc.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xxhdpi-v4/yellow_ccc.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 | -
4 |
5 |
6 |
7 |
8 |
9 |
10 |
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xxhdpi-v4/yellow_db.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xxhdpi-v4/yellow_dd.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xxhdpi-v4/yellow_ddd.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 | -
4 |
5 |
6 |
7 |
8 |
9 |
10 |
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xxhdpi/dkplayer_ic_action_arrow_back.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Arashvscode/Ghostwebapp/d5d268e826247ea24b9b5eccdc4be0589f34aaa8/app/src/main/res/drawable-xxhdpi/dkplayer_ic_action_arrow_back.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xxhdpi/dkplayer_ic_action_autorenew.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Arashvscode/Ghostwebapp/d5d268e826247ea24b9b5eccdc4be0589f34aaa8/app/src/main/res/drawable-xxhdpi/dkplayer_ic_action_autorenew.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xxhdpi/dkplayer_ic_action_battery.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Arashvscode/Ghostwebapp/d5d268e826247ea24b9b5eccdc4be0589f34aaa8/app/src/main/res/drawable-xxhdpi/dkplayer_ic_action_battery.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xxhdpi/dkplayer_ic_action_battery_10.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Arashvscode/Ghostwebapp/d5d268e826247ea24b9b5eccdc4be0589f34aaa8/app/src/main/res/drawable-xxhdpi/dkplayer_ic_action_battery_10.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xxhdpi/dkplayer_ic_action_battery_20.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Arashvscode/Ghostwebapp/d5d268e826247ea24b9b5eccdc4be0589f34aaa8/app/src/main/res/drawable-xxhdpi/dkplayer_ic_action_battery_20.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xxhdpi/dkplayer_ic_action_battery_30.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Arashvscode/Ghostwebapp/d5d268e826247ea24b9b5eccdc4be0589f34aaa8/app/src/main/res/drawable-xxhdpi/dkplayer_ic_action_battery_30.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xxhdpi/dkplayer_ic_action_battery_40.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Arashvscode/Ghostwebapp/d5d268e826247ea24b9b5eccdc4be0589f34aaa8/app/src/main/res/drawable-xxhdpi/dkplayer_ic_action_battery_40.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xxhdpi/dkplayer_ic_action_battery_50.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Arashvscode/Ghostwebapp/d5d268e826247ea24b9b5eccdc4be0589f34aaa8/app/src/main/res/drawable-xxhdpi/dkplayer_ic_action_battery_50.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xxhdpi/dkplayer_ic_action_battery_60.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Arashvscode/Ghostwebapp/d5d268e826247ea24b9b5eccdc4be0589f34aaa8/app/src/main/res/drawable-xxhdpi/dkplayer_ic_action_battery_60.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xxhdpi/dkplayer_ic_action_battery_70.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Arashvscode/Ghostwebapp/d5d268e826247ea24b9b5eccdc4be0589f34aaa8/app/src/main/res/drawable-xxhdpi/dkplayer_ic_action_battery_70.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xxhdpi/dkplayer_ic_action_battery_80.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Arashvscode/Ghostwebapp/d5d268e826247ea24b9b5eccdc4be0589f34aaa8/app/src/main/res/drawable-xxhdpi/dkplayer_ic_action_battery_80.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xxhdpi/dkplayer_ic_action_battery_90.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Arashvscode/Ghostwebapp/d5d268e826247ea24b9b5eccdc4be0589f34aaa8/app/src/main/res/drawable-xxhdpi/dkplayer_ic_action_battery_90.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xxhdpi/dkplayer_ic_action_brightness.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Arashvscode/Ghostwebapp/d5d268e826247ea24b9b5eccdc4be0589f34aaa8/app/src/main/res/drawable-xxhdpi/dkplayer_ic_action_brightness.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xxhdpi/dkplayer_ic_action_close.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Arashvscode/Ghostwebapp/d5d268e826247ea24b9b5eccdc4be0589f34aaa8/app/src/main/res/drawable-xxhdpi/dkplayer_ic_action_close.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xxhdpi/dkplayer_ic_action_fast_forward.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Arashvscode/Ghostwebapp/d5d268e826247ea24b9b5eccdc4be0589f34aaa8/app/src/main/res/drawable-xxhdpi/dkplayer_ic_action_fast_forward.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xxhdpi/dkplayer_ic_action_fast_rewind.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Arashvscode/Ghostwebapp/d5d268e826247ea24b9b5eccdc4be0589f34aaa8/app/src/main/res/drawable-xxhdpi/dkplayer_ic_action_fast_rewind.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xxhdpi/dkplayer_ic_action_fullscreen.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Arashvscode/Ghostwebapp/d5d268e826247ea24b9b5eccdc4be0589f34aaa8/app/src/main/res/drawable-xxhdpi/dkplayer_ic_action_fullscreen.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xxhdpi/dkplayer_ic_action_fullscreen_exit.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Arashvscode/Ghostwebapp/d5d268e826247ea24b9b5eccdc4be0589f34aaa8/app/src/main/res/drawable-xxhdpi/dkplayer_ic_action_fullscreen_exit.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xxhdpi/dkplayer_ic_action_lock_close.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Arashvscode/Ghostwebapp/d5d268e826247ea24b9b5eccdc4be0589f34aaa8/app/src/main/res/drawable-xxhdpi/dkplayer_ic_action_lock_close.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xxhdpi/dkplayer_ic_action_lock_open.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Arashvscode/Ghostwebapp/d5d268e826247ea24b9b5eccdc4be0589f34aaa8/app/src/main/res/drawable-xxhdpi/dkplayer_ic_action_lock_open.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xxhdpi/dkplayer_ic_action_pause.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Arashvscode/Ghostwebapp/d5d268e826247ea24b9b5eccdc4be0589f34aaa8/app/src/main/res/drawable-xxhdpi/dkplayer_ic_action_pause.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xxhdpi/dkplayer_ic_action_play_arrow.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Arashvscode/Ghostwebapp/d5d268e826247ea24b9b5eccdc4be0589f34aaa8/app/src/main/res/drawable-xxhdpi/dkplayer_ic_action_play_arrow.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xxhdpi/dkplayer_ic_action_replay.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Arashvscode/Ghostwebapp/d5d268e826247ea24b9b5eccdc4be0589f34aaa8/app/src/main/res/drawable-xxhdpi/dkplayer_ic_action_replay.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xxhdpi/dkplayer_ic_action_volume_off.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Arashvscode/Ghostwebapp/d5d268e826247ea24b9b5eccdc4be0589f34aaa8/app/src/main/res/drawable-xxhdpi/dkplayer_ic_action_volume_off.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xxhdpi/dkplayer_ic_action_volume_up.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Arashvscode/Ghostwebapp/d5d268e826247ea24b9b5eccdc4be0589f34aaa8/app/src/main/res/drawable-xxhdpi/dkplayer_ic_action_volume_up.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xxhdpi/key_del.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Arashvscode/Ghostwebapp/d5d268e826247ea24b9b5eccdc4be0589f34aaa8/app/src/main/res/drawable-xxhdpi/key_del.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xxhdpi/key_del_dark.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Arashvscode/Ghostwebapp/d5d268e826247ea24b9b5eccdc4be0589f34aaa8/app/src/main/res/drawable-xxhdpi/key_del_dark.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xxhdpi/key_enter.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Arashvscode/Ghostwebapp/d5d268e826247ea24b9b5eccdc4be0589f34aaa8/app/src/main/res/drawable-xxhdpi/key_enter.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xxhdpi/key_enter_dark.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Arashvscode/Ghostwebapp/d5d268e826247ea24b9b5eccdc4be0589f34aaa8/app/src/main/res/drawable-xxhdpi/key_enter_dark.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xxhdpi/key_noghteh.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Arashvscode/Ghostwebapp/d5d268e826247ea24b9b5eccdc4be0589f34aaa8/app/src/main/res/drawable-xxhdpi/key_noghteh.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xxhdpi/key_noghteh_dark.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Arashvscode/Ghostwebapp/d5d268e826247ea24b9b5eccdc4be0589f34aaa8/app/src/main/res/drawable-xxhdpi/key_noghteh_dark.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xxhdpi/key_shift.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Arashvscode/Ghostwebapp/d5d268e826247ea24b9b5eccdc4be0589f34aaa8/app/src/main/res/drawable-xxhdpi/key_shift.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xxhdpi/key_shift_dark.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Arashvscode/Ghostwebapp/d5d268e826247ea24b9b5eccdc4be0589f34aaa8/app/src/main/res/drawable-xxhdpi/key_shift_dark.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xxhdpi/key_space.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Arashvscode/Ghostwebapp/d5d268e826247ea24b9b5eccdc4be0589f34aaa8/app/src/main/res/drawable-xxhdpi/key_space.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xxhdpi/key_space_dark.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Arashvscode/Ghostwebapp/d5d268e826247ea24b9b5eccdc4be0589f34aaa8/app/src/main/res/drawable-xxhdpi/key_space_dark.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xxhdpi/paste_black.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Arashvscode/Ghostwebapp/d5d268e826247ea24b9b5eccdc4be0589f34aaa8/app/src/main/res/drawable-xxhdpi/paste_black.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xxhdpi/paste_white.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Arashvscode/Ghostwebapp/d5d268e826247ea24b9b5eccdc4be0589f34aaa8/app/src/main/res/drawable-xxhdpi/paste_white.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xxhdpi/preview_dark.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Arashvscode/Ghostwebapp/d5d268e826247ea24b9b5eccdc4be0589f34aaa8/app/src/main/res/drawable-xxhdpi/preview_dark.9.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xxhdpi/preview_white.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Arashvscode/Ghostwebapp/d5d268e826247ea24b9b5eccdc4be0589f34aaa8/app/src/main/res/drawable-xxhdpi/preview_white.9.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xxxhdpi/dkplayer_ic_action_arrow_back.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Arashvscode/Ghostwebapp/d5d268e826247ea24b9b5eccdc4be0589f34aaa8/app/src/main/res/drawable-xxxhdpi/dkplayer_ic_action_arrow_back.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xxxhdpi/dkplayer_ic_action_autorenew.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Arashvscode/Ghostwebapp/d5d268e826247ea24b9b5eccdc4be0589f34aaa8/app/src/main/res/drawable-xxxhdpi/dkplayer_ic_action_autorenew.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xxxhdpi/dkplayer_ic_action_battery.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Arashvscode/Ghostwebapp/d5d268e826247ea24b9b5eccdc4be0589f34aaa8/app/src/main/res/drawable-xxxhdpi/dkplayer_ic_action_battery.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xxxhdpi/dkplayer_ic_action_battery_10.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Arashvscode/Ghostwebapp/d5d268e826247ea24b9b5eccdc4be0589f34aaa8/app/src/main/res/drawable-xxxhdpi/dkplayer_ic_action_battery_10.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xxxhdpi/dkplayer_ic_action_battery_20.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Arashvscode/Ghostwebapp/d5d268e826247ea24b9b5eccdc4be0589f34aaa8/app/src/main/res/drawable-xxxhdpi/dkplayer_ic_action_battery_20.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xxxhdpi/dkplayer_ic_action_battery_30.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Arashvscode/Ghostwebapp/d5d268e826247ea24b9b5eccdc4be0589f34aaa8/app/src/main/res/drawable-xxxhdpi/dkplayer_ic_action_battery_30.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xxxhdpi/dkplayer_ic_action_battery_40.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Arashvscode/Ghostwebapp/d5d268e826247ea24b9b5eccdc4be0589f34aaa8/app/src/main/res/drawable-xxxhdpi/dkplayer_ic_action_battery_40.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xxxhdpi/dkplayer_ic_action_battery_50.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Arashvscode/Ghostwebapp/d5d268e826247ea24b9b5eccdc4be0589f34aaa8/app/src/main/res/drawable-xxxhdpi/dkplayer_ic_action_battery_50.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xxxhdpi/dkplayer_ic_action_battery_60.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Arashvscode/Ghostwebapp/d5d268e826247ea24b9b5eccdc4be0589f34aaa8/app/src/main/res/drawable-xxxhdpi/dkplayer_ic_action_battery_60.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xxxhdpi/dkplayer_ic_action_battery_70.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Arashvscode/Ghostwebapp/d5d268e826247ea24b9b5eccdc4be0589f34aaa8/app/src/main/res/drawable-xxxhdpi/dkplayer_ic_action_battery_70.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xxxhdpi/dkplayer_ic_action_battery_80.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Arashvscode/Ghostwebapp/d5d268e826247ea24b9b5eccdc4be0589f34aaa8/app/src/main/res/drawable-xxxhdpi/dkplayer_ic_action_battery_80.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xxxhdpi/dkplayer_ic_action_battery_90.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Arashvscode/Ghostwebapp/d5d268e826247ea24b9b5eccdc4be0589f34aaa8/app/src/main/res/drawable-xxxhdpi/dkplayer_ic_action_battery_90.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xxxhdpi/dkplayer_ic_action_brightness.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Arashvscode/Ghostwebapp/d5d268e826247ea24b9b5eccdc4be0589f34aaa8/app/src/main/res/drawable-xxxhdpi/dkplayer_ic_action_brightness.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xxxhdpi/dkplayer_ic_action_close.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Arashvscode/Ghostwebapp/d5d268e826247ea24b9b5eccdc4be0589f34aaa8/app/src/main/res/drawable-xxxhdpi/dkplayer_ic_action_close.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xxxhdpi/dkplayer_ic_action_fast_forward.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Arashvscode/Ghostwebapp/d5d268e826247ea24b9b5eccdc4be0589f34aaa8/app/src/main/res/drawable-xxxhdpi/dkplayer_ic_action_fast_forward.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xxxhdpi/dkplayer_ic_action_fast_rewind.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Arashvscode/Ghostwebapp/d5d268e826247ea24b9b5eccdc4be0589f34aaa8/app/src/main/res/drawable-xxxhdpi/dkplayer_ic_action_fast_rewind.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xxxhdpi/dkplayer_ic_action_fullscreen.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Arashvscode/Ghostwebapp/d5d268e826247ea24b9b5eccdc4be0589f34aaa8/app/src/main/res/drawable-xxxhdpi/dkplayer_ic_action_fullscreen.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xxxhdpi/dkplayer_ic_action_fullscreen_exit.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Arashvscode/Ghostwebapp/d5d268e826247ea24b9b5eccdc4be0589f34aaa8/app/src/main/res/drawable-xxxhdpi/dkplayer_ic_action_fullscreen_exit.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xxxhdpi/dkplayer_ic_action_lock_close.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Arashvscode/Ghostwebapp/d5d268e826247ea24b9b5eccdc4be0589f34aaa8/app/src/main/res/drawable-xxxhdpi/dkplayer_ic_action_lock_close.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xxxhdpi/dkplayer_ic_action_lock_open.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Arashvscode/Ghostwebapp/d5d268e826247ea24b9b5eccdc4be0589f34aaa8/app/src/main/res/drawable-xxxhdpi/dkplayer_ic_action_lock_open.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xxxhdpi/dkplayer_ic_action_pause.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Arashvscode/Ghostwebapp/d5d268e826247ea24b9b5eccdc4be0589f34aaa8/app/src/main/res/drawable-xxxhdpi/dkplayer_ic_action_pause.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xxxhdpi/dkplayer_ic_action_play_arrow.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Arashvscode/Ghostwebapp/d5d268e826247ea24b9b5eccdc4be0589f34aaa8/app/src/main/res/drawable-xxxhdpi/dkplayer_ic_action_play_arrow.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xxxhdpi/dkplayer_ic_action_replay.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Arashvscode/Ghostwebapp/d5d268e826247ea24b9b5eccdc4be0589f34aaa8/app/src/main/res/drawable-xxxhdpi/dkplayer_ic_action_replay.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xxxhdpi/dkplayer_ic_action_volume_off.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Arashvscode/Ghostwebapp/d5d268e826247ea24b9b5eccdc4be0589f34aaa8/app/src/main/res/drawable-xxxhdpi/dkplayer_ic_action_volume_off.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xxxhdpi/dkplayer_ic_action_volume_up.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Arashvscode/Ghostwebapp/d5d268e826247ea24b9b5eccdc4be0589f34aaa8/app/src/main/res/drawable-xxxhdpi/dkplayer_ic_action_volume_up.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable/BackText.xml:
--------------------------------------------------------------------------------
1 |
2 |
5 |
6 |
8 |
9 |
11 |
12 |
15 |
16 |
17 |
--------------------------------------------------------------------------------
/app/src/main/res/drawable/Ground.xml:
--------------------------------------------------------------------------------
1 |
2 |
5 |
6 |
8 |
9 |
11 |
12 |
15 |
16 |
17 |
--------------------------------------------------------------------------------
/app/src/main/res/drawable/alcs_1.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Arashvscode/Ghostwebapp/d5d268e826247ea24b9b5eccdc4be0589f34aaa8/app/src/main/res/drawable/alcs_1.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable/alcs_2.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Arashvscode/Ghostwebapp/d5d268e826247ea24b9b5eccdc4be0589f34aaa8/app/src/main/res/drawable/alcs_2.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable/ale.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Arashvscode/Ghostwebapp/d5d268e826247ea24b9b5eccdc4be0589f34aaa8/app/src/main/res/drawable/ale.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable/alht.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Arashvscode/Ghostwebapp/d5d268e826247ea24b9b5eccdc4be0589f34aaa8/app/src/main/res/drawable/alht.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable/alls.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Arashvscode/Ghostwebapp/d5d268e826247ea24b9b5eccdc4be0589f34aaa8/app/src/main/res/drawable/alls.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable/app_icon.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Arashvscode/Ghostwebapp/d5d268e826247ea24b9b5eccdc4be0589f34aaa8/app/src/main/res/drawable/app_icon.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable/arrow.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Arashvscode/Ghostwebapp/d5d268e826247ea24b9b5eccdc4be0589f34aaa8/app/src/main/res/drawable/arrow.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable/arrowr.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Arashvscode/Ghostwebapp/d5d268e826247ea24b9b5eccdc4be0589f34aaa8/app/src/main/res/drawable/arrowr.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable/back.xml:
--------------------------------------------------------------------------------
1 |
2 |
5 |
6 |
8 |
9 |
11 |
12 |
--------------------------------------------------------------------------------
/app/src/main/res/drawable/backRudios.xml:
--------------------------------------------------------------------------------
1 |
2 |
5 |
6 |
8 |
9 |
11 |
12 |
13 |
--------------------------------------------------------------------------------
/app/src/main/res/drawable/background_black_glass.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Arashvscode/Ghostwebapp/d5d268e826247ea24b9b5eccdc4be0589f34aaa8/app/src/main/res/drawable/background_black_glass.jpg
--------------------------------------------------------------------------------
/app/src/main/res/drawable/background_girly.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Arashvscode/Ghostwebapp/d5d268e826247ea24b9b5eccdc4be0589f34aaa8/app/src/main/res/drawable/background_girly.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable/background_white_glass.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Arashvscode/Ghostwebapp/d5d268e826247ea24b9b5eccdc4be0589f34aaa8/app/src/main/res/drawable/background_white_glass.jpg
--------------------------------------------------------------------------------
/app/src/main/res/drawable/backtext.xml:
--------------------------------------------------------------------------------
1 |
2 |
5 |
6 |
8 |
9 |
11 |
12 |
15 |
16 |
17 |
--------------------------------------------------------------------------------
/app/src/main/res/drawable/button_bg.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
--------------------------------------------------------------------------------
/app/src/main/res/drawable/button_bg_pressed.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
--------------------------------------------------------------------------------
/app/src/main/res/drawable/button_selector.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
--------------------------------------------------------------------------------
/app/src/main/res/drawable/cd.xml:
--------------------------------------------------------------------------------
1 |
2 |
5 |
6 |
8 |
9 |
11 |
12 |
13 |
--------------------------------------------------------------------------------
/app/src/main/res/drawable/checker_background.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Arashvscode/Ghostwebapp/d5d268e826247ea24b9b5eccdc4be0589f34aaa8/app/src/main/res/drawable/checker_background.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable/circle_section_1.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
--------------------------------------------------------------------------------
/app/src/main/res/drawable/circle_section_2.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
--------------------------------------------------------------------------------
/app/src/main/res/drawable/close.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Arashvscode/Ghostwebapp/d5d268e826247ea24b9b5eccdc4be0589f34aaa8/app/src/main/res/drawable/close.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable/codeformat.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Arashvscode/Ghostwebapp/d5d268e826247ea24b9b5eccdc4be0589f34aaa8/app/src/main/res/drawable/codeformat.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable/cog.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Arashvscode/Ghostwebapp/d5d268e826247ea24b9b5eccdc4be0589f34aaa8/app/src/main/res/drawable/cog.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable/color.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Arashvscode/Ghostwebapp/d5d268e826247ea24b9b5eccdc4be0589f34aaa8/app/src/main/res/drawable/color.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable/console.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Arashvscode/Ghostwebapp/d5d268e826247ea24b9b5eccdc4be0589f34aaa8/app/src/main/res/drawable/console.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable/copys.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Arashvscode/Ghostwebapp/d5d268e826247ea24b9b5eccdc4be0589f34aaa8/app/src/main/res/drawable/copys.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable/css3.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Arashvscode/Ghostwebapp/d5d268e826247ea24b9b5eccdc4be0589f34aaa8/app/src/main/res/drawable/css3.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable/cuts.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Arashvscode/Ghostwebapp/d5d268e826247ea24b9b5eccdc4be0589f34aaa8/app/src/main/res/drawable/cuts.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable/default_image.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Arashvscode/Ghostwebapp/d5d268e826247ea24b9b5eccdc4be0589f34aaa8/app/src/main/res/drawable/default_image.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable/delete.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Arashvscode/Ghostwebapp/d5d268e826247ea24b9b5eccdc4be0589f34aaa8/app/src/main/res/drawable/delete.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable/deletear.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Arashvscode/Ghostwebapp/d5d268e826247ea24b9b5eccdc4be0589f34aaa8/app/src/main/res/drawable/deletear.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable/dkplayer_seekbar_thumb_normal.xml:
--------------------------------------------------------------------------------
1 |
2 |
4 |
5 |
8 |
9 |
--------------------------------------------------------------------------------
/app/src/main/res/drawable/dkplayer_seekbar_thumb_pressed.xml:
--------------------------------------------------------------------------------
1 |
2 |
4 |
5 |
8 |
9 |
--------------------------------------------------------------------------------
/app/src/main/res/drawable/dkplayer_selector_full_screen_button.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
--------------------------------------------------------------------------------
/app/src/main/res/drawable/dkplayer_selector_lock_button.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
--------------------------------------------------------------------------------
/app/src/main/res/drawable/dkplayer_selector_play_button.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
--------------------------------------------------------------------------------
/app/src/main/res/drawable/dkplayer_shape_back_bg.xml:
--------------------------------------------------------------------------------
1 |
2 |
4 |
5 |
8 |
9 |
--------------------------------------------------------------------------------
/app/src/main/res/drawable/dkplayer_shape_play_bg.xml:
--------------------------------------------------------------------------------
1 |
2 |
4 |
5 |
8 |
9 |
--------------------------------------------------------------------------------
/app/src/main/res/drawable/dkplayer_shape_standard_controller_top_bg.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
7 |
8 |
--------------------------------------------------------------------------------
/app/src/main/res/drawable/dkplayer_shape_stardard_controller_bottom_bg.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
7 |
8 |
--------------------------------------------------------------------------------
/app/src/main/res/drawable/dkplayer_shape_status_view_btn.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
--------------------------------------------------------------------------------
/app/src/main/res/drawable/enter_key.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
--------------------------------------------------------------------------------
/app/src/main/res/drawable/exit.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Arashvscode/Ghostwebapp/d5d268e826247ea24b9b5eccdc4be0589f34aaa8/app/src/main/res/drawable/exit.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable/file.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Arashvscode/Ghostwebapp/d5d268e826247ea24b9b5eccdc4be0589f34aaa8/app/src/main/res/drawable/file.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable/fileadds.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Arashvscode/Ghostwebapp/d5d268e826247ea24b9b5eccdc4be0589f34aaa8/app/src/main/res/drawable/fileadds.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable/finalarrowdown.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Arashvscode/Ghostwebapp/d5d268e826247ea24b9b5eccdc4be0589f34aaa8/app/src/main/res/drawable/finalarrowdown.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable/finalarrowleft.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Arashvscode/Ghostwebapp/d5d268e826247ea24b9b5eccdc4be0589f34aaa8/app/src/main/res/drawable/finalarrowleft.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable/flash.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Arashvscode/Ghostwebapp/d5d268e826247ea24b9b5eccdc4be0589f34aaa8/app/src/main/res/drawable/flash.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable/focused.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Arashvscode/Ghostwebapp/d5d268e826247ea24b9b5eccdc4be0589f34aaa8/app/src/main/res/drawable/focused.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable/folder.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Arashvscode/Ghostwebapp/d5d268e826247ea24b9b5eccdc4be0589f34aaa8/app/src/main/res/drawable/folder.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable/folder3.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Arashvscode/Ghostwebapp/d5d268e826247ea24b9b5eccdc4be0589f34aaa8/app/src/main/res/drawable/folder3.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable/folderandroid.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Arashvscode/Ghostwebapp/d5d268e826247ea24b9b5eccdc4be0589f34aaa8/app/src/main/res/drawable/folderandroid.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable/foldercog.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Arashvscode/Ghostwebapp/d5d268e826247ea24b9b5eccdc4be0589f34aaa8/app/src/main/res/drawable/foldercog.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable/folderdownload.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Arashvscode/Ghostwebapp/d5d268e826247ea24b9b5eccdc4be0589f34aaa8/app/src/main/res/drawable/folderdownload.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable/folderhome.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Arashvscode/Ghostwebapp/d5d268e826247ea24b9b5eccdc4be0589f34aaa8/app/src/main/res/drawable/folderhome.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable/foldermusic.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Arashvscode/Ghostwebapp/d5d268e826247ea24b9b5eccdc4be0589f34aaa8/app/src/main/res/drawable/foldermusic.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable/foldersketchware.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Arashvscode/Ghostwebapp/d5d268e826247ea24b9b5eccdc4be0589f34aaa8/app/src/main/res/drawable/foldersketchware.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable/fontlookimageview.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Arashvscode/Ghostwebapp/d5d268e826247ea24b9b5eccdc4be0589f34aaa8/app/src/main/res/drawable/fontlookimageview.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable/geticon.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
--------------------------------------------------------------------------------
/app/src/main/res/drawable/ghost1656335533012.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Arashvscode/Ghostwebapp/d5d268e826247ea24b9b5eccdc4be0589f34aaa8/app/src/main/res/drawable/ghost1656335533012.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable/github.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Arashvscode/Ghostwebapp/d5d268e826247ea24b9b5eccdc4be0589f34aaa8/app/src/main/res/drawable/github.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable/googleplay.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Arashvscode/Ghostwebapp/d5d268e826247ea24b9b5eccdc4be0589f34aaa8/app/src/main/res/drawable/googleplay.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable/ground.xml:
--------------------------------------------------------------------------------
1 |
2 |
5 |
6 |
8 |
9 |
11 |
12 |
15 |
16 |
17 |
--------------------------------------------------------------------------------
/app/src/main/res/drawable/hp110.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
--------------------------------------------------------------------------------
/app/src/main/res/drawable/html.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Arashvscode/Ghostwebapp/d5d268e826247ea24b9b5eccdc4be0589f34aaa8/app/src/main/res/drawable/html.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable/ic_grain_white.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Arashvscode/Ghostwebapp/d5d268e826247ea24b9b5eccdc4be0589f34aaa8/app/src/main/res/drawable/ic_grain_white.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable/ic_more_vert_white.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Arashvscode/Ghostwebapp/d5d268e826247ea24b9b5eccdc4be0589f34aaa8/app/src/main/res/drawable/ic_more_vert_white.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable/ic_settings_white.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Arashvscode/Ghostwebapp/d5d268e826247ea24b9b5eccdc4be0589f34aaa8/app/src/main/res/drawable/ic_settings_white.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable/icon.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Arashvscode/Ghostwebapp/d5d268e826247ea24b9b5eccdc4be0589f34aaa8/app/src/main/res/drawable/icon.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable/information.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Arashvscode/Ghostwebapp/d5d268e826247ea24b9b5eccdc4be0589f34aaa8/app/src/main/res/drawable/information.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable/javanull.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Arashvscode/Ghostwebapp/d5d268e826247ea24b9b5eccdc4be0589f34aaa8/app/src/main/res/drawable/javanull.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable/js01.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Arashvscode/Ghostwebapp/d5d268e826247ea24b9b5eccdc4be0589f34aaa8/app/src/main/res/drawable/js01.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable/jsonview_select_bg.xml:
--------------------------------------------------------------------------------
1 |
2 |
4 |
5 |
6 |
7 |
8 |
9 |
12 |
13 |
--------------------------------------------------------------------------------
/app/src/main/res/drawable/jvrp1.xml:
--------------------------------------------------------------------------------
1 |
2 |
5 |
6 |
10 |
11 |
13 |
14 |
17 |
18 |
19 |
--------------------------------------------------------------------------------
/app/src/main/res/drawable/keyboard.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Arashvscode/Ghostwebapp/d5d268e826247ea24b9b5eccdc4be0589f34aaa8/app/src/main/res/drawable/keyboard.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable/keyboardlisnertalluserpost_1.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Arashvscode/Ghostwebapp/d5d268e826247ea24b9b5eccdc4be0589f34aaa8/app/src/main/res/drawable/keyboardlisnertalluserpost_1.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable/keyboardlisnertalluserpost_2.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Arashvscode/Ghostwebapp/d5d268e826247ea24b9b5eccdc4be0589f34aaa8/app/src/main/res/drawable/keyboardlisnertalluserpost_2.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable/keyboardlisnertalluserpost_3.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Arashvscode/Ghostwebapp/d5d268e826247ea24b9b5eccdc4be0589f34aaa8/app/src/main/res/drawable/keyboardlisnertalluserpost_3.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable/keyboardlisnertalluserpost_4.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Arashvscode/Ghostwebapp/d5d268e826247ea24b9b5eccdc4be0589f34aaa8/app/src/main/res/drawable/keyboardlisnertalluserpost_4.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable/languagego.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Arashvscode/Ghostwebapp/d5d268e826247ea24b9b5eccdc4be0589f34aaa8/app/src/main/res/drawable/languagego.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable/languagephp.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Arashvscode/Ghostwebapp/d5d268e826247ea24b9b5eccdc4be0589f34aaa8/app/src/main/res/drawable/languagephp.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable/laptopmod.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Arashvscode/Ghostwebapp/d5d268e826247ea24b9b5eccdc4be0589f34aaa8/app/src/main/res/drawable/laptopmod.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable/link.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Arashvscode/Ghostwebapp/d5d268e826247ea24b9b5eccdc4be0589f34aaa8/app/src/main/res/drawable/link.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable/listview_selector.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
--------------------------------------------------------------------------------
/app/src/main/res/drawable/listviewcorner.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
--------------------------------------------------------------------------------
/app/src/main/res/drawable/listviewcorner2.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
--------------------------------------------------------------------------------
/app/src/main/res/drawable/log.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Arashvscode/Ghostwebapp/d5d268e826247ea24b9b5eccdc4be0589f34aaa8/app/src/main/res/drawable/log.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable/md.xml:
--------------------------------------------------------------------------------
1 |
8 |
9 |
12 |
13 |
--------------------------------------------------------------------------------
/app/src/main/res/drawable/mfont.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Arashvscode/Ghostwebapp/d5d268e826247ea24b9b5eccdc4be0589f34aaa8/app/src/main/res/drawable/mfont.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable/mimagproject.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Arashvscode/Ghostwebapp/d5d268e826247ea24b9b5eccdc4be0589f34aaa8/app/src/main/res/drawable/mimagproject.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable/mnormal.xml:
--------------------------------------------------------------------------------
1 |
2 |
5 |
6 |
8 |
9 |
11 |
12 |
15 |
16 |
19 |
20 |
21 |
--------------------------------------------------------------------------------
/app/src/main/res/drawable/mobilemod.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Arashvscode/Ghostwebapp/d5d268e826247ea24b9b5eccdc4be0589f34aaa8/app/src/main/res/drawable/mobilemod.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable/mr.xml:
--------------------------------------------------------------------------------
1 |
8 |
9 |
12 |
13 |
--------------------------------------------------------------------------------
/app/src/main/res/drawable/mr_enable.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Arashvscode/Ghostwebapp/d5d268e826247ea24b9b5eccdc4be0589f34aaa8/app/src/main/res/drawable/mr_enable.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable/mr_image.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Arashvscode/Ghostwebapp/d5d268e826247ea24b9b5eccdc4be0589f34aaa8/app/src/main/res/drawable/mr_image.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable/mr_info.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Arashvscode/Ghostwebapp/d5d268e826247ea24b9b5eccdc4be0589f34aaa8/app/src/main/res/drawable/mr_info.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable/mr_select.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Arashvscode/Ghostwebapp/d5d268e826247ea24b9b5eccdc4be0589f34aaa8/app/src/main/res/drawable/mr_select.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable/mr_settings.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Arashvscode/Ghostwebapp/d5d268e826247ea24b9b5eccdc4be0589f34aaa8/app/src/main/res/drawable/mr_settings.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable/mr_share.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Arashvscode/Ghostwebapp/d5d268e826247ea24b9b5eccdc4be0589f34aaa8/app/src/main/res/drawable/mr_share.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable/musico.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Arashvscode/Ghostwebapp/d5d268e826247ea24b9b5eccdc4be0589f34aaa8/app/src/main/res/drawable/musico.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable/neon.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Arashvscode/Ghostwebapp/d5d268e826247ea24b9b5eccdc4be0589f34aaa8/app/src/main/res/drawable/neon.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable/noeye.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Arashvscode/Ghostwebapp/d5d268e826247ea24b9b5eccdc4be0589f34aaa8/app/src/main/res/drawable/noeye.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable/okeye.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Arashvscode/Ghostwebapp/d5d268e826247ea24b9b5eccdc4be0589f34aaa8/app/src/main/res/drawable/okeye.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable/opendes.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Arashvscode/Ghostwebapp/d5d268e826247ea24b9b5eccdc4be0589f34aaa8/app/src/main/res/drawable/opendes.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable/pastecode.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Arashvscode/Ghostwebapp/d5d268e826247ea24b9b5eccdc4be0589f34aaa8/app/src/main/res/drawable/pastecode.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable/pdfview.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Arashvscode/Ghostwebapp/d5d268e826247ea24b9b5eccdc4be0589f34aaa8/app/src/main/res/drawable/pdfview.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable/play.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Arashvscode/Ghostwebapp/d5d268e826247ea24b9b5eccdc4be0589f34aaa8/app/src/main/res/drawable/play.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable/plus.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Arashvscode/Ghostwebapp/d5d268e826247ea24b9b5eccdc4be0589f34aaa8/app/src/main/res/drawable/plus.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable/popup.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
--------------------------------------------------------------------------------
/app/src/main/res/drawable/popup_dark.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
--------------------------------------------------------------------------------
/app/src/main/res/drawable/project.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Arashvscode/Ghostwebapp/d5d268e826247ea24b9b5eccdc4be0589f34aaa8/app/src/main/res/drawable/project.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable/ptbg.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Arashvscode/Ghostwebapp/d5d268e826247ea24b9b5eccdc4be0589f34aaa8/app/src/main/res/drawable/ptbg.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable/ramin_a.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 | -
4 |
5 |
6 |
7 |
8 |
9 |
10 |
11 |
--------------------------------------------------------------------------------
/app/src/main/res/drawable/ramin_a_dark.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 | -
4 |
5 |
6 |
7 |
8 |
9 |
10 |
11 |
--------------------------------------------------------------------------------
/app/src/main/res/drawable/ramin_b.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 | -
4 |
5 |
6 |
7 |
8 |
9 |
10 |
11 |
--------------------------------------------------------------------------------
/app/src/main/res/drawable/ramin_b_dark.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 | -
4 |
5 |
6 |
7 |
8 |
9 |
10 |
11 |
--------------------------------------------------------------------------------
/app/src/main/res/drawable/rartarget.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Arashvscode/Ghostwebapp/d5d268e826247ea24b9b5eccdc4be0589f34aaa8/app/src/main/res/drawable/rartarget.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable/redo.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Arashvscode/Ghostwebapp/d5d268e826247ea24b9b5eccdc4be0589f34aaa8/app/src/main/res/drawable/redo.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable/refresh.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Arashvscode/Ghostwebapp/d5d268e826247ea24b9b5eccdc4be0589f34aaa8/app/src/main/res/drawable/refresh.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable/rename.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Arashvscode/Ghostwebapp/d5d268e826247ea24b9b5eccdc4be0589f34aaa8/app/src/main/res/drawable/rename.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable/resulttheme.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Arashvscode/Ghostwebapp/d5d268e826247ea24b9b5eccdc4be0589f34aaa8/app/src/main/res/drawable/resulttheme.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable/save.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Arashvscode/Ghostwebapp/d5d268e826247ea24b9b5eccdc4be0589f34aaa8/app/src/main/res/drawable/save.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable/savetext.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Arashvscode/Ghostwebapp/d5d268e826247ea24b9b5eccdc4be0589f34aaa8/app/src/main/res/drawable/savetext.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable/school.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Arashvscode/Ghostwebapp/d5d268e826247ea24b9b5eccdc4be0589f34aaa8/app/src/main/res/drawable/school.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable/sdcard.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Arashvscode/Ghostwebapp/d5d268e826247ea24b9b5eccdc4be0589f34aaa8/app/src/main/res/drawable/sdcard.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable/seeicon.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
--------------------------------------------------------------------------------
/app/src/main/res/drawable/textsearch.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Arashvscode/Ghostwebapp/d5d268e826247ea24b9b5eccdc4be0589f34aaa8/app/src/main/res/drawable/textsearch.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable/thumbnail_border.xml:
--------------------------------------------------------------------------------
1 |
4 |
6 |
9 |
10 |
--------------------------------------------------------------------------------
/app/src/main/res/drawable/tmp.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
--------------------------------------------------------------------------------
/app/src/main/res/drawable/txtfile.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Arashvscode/Ghostwebapp/d5d268e826247ea24b9b5eccdc4be0589f34aaa8/app/src/main/res/drawable/txtfile.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable/undos.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Arashvscode/Ghostwebapp/d5d268e826247ea24b9b5eccdc4be0589f34aaa8/app/src/main/res/drawable/undos.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable/unzip.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Arashvscode/Ghostwebapp/d5d268e826247ea24b9b5eccdc4be0589f34aaa8/app/src/main/res/drawable/unzip.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable/videothumplaese.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Arashvscode/Ghostwebapp/d5d268e826247ea24b9b5eccdc4be0589f34aaa8/app/src/main/res/drawable/videothumplaese.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable/webproject.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Arashvscode/Ghostwebapp/d5d268e826247ea24b9b5eccdc4be0589f34aaa8/app/src/main/res/drawable/webproject.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable/zipandtar.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Arashvscode/Ghostwebapp/d5d268e826247ea24b9b5eccdc4be0589f34aaa8/app/src/main/res/drawable/zipandtar.png
--------------------------------------------------------------------------------
/app/src/main/res/font/GhostFont.ttf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Arashvscode/Ghostwebapp/d5d268e826247ea24b9b5eccdc4be0589f34aaa8/app/src/main/res/font/GhostFont.ttf
--------------------------------------------------------------------------------
/app/src/main/res/layout/color_edit.xml:
--------------------------------------------------------------------------------
1 |
2 |
6 |
--------------------------------------------------------------------------------
/app/src/main/res/layout/color_preference_thumbnail_disabled.xml:
--------------------------------------------------------------------------------
1 |
2 |
7 |
8 |
9 |
--------------------------------------------------------------------------------
/app/src/main/res/layout/color_preview.xml:
--------------------------------------------------------------------------------
1 |
2 |
--------------------------------------------------------------------------------
/app/src/main/res/layout/color_widget.xml:
--------------------------------------------------------------------------------
1 |
2 |
--------------------------------------------------------------------------------
/app/src/main/res/layout/grid_row.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
--------------------------------------------------------------------------------
/app/src/main/res/layout/mianbar.xml:
--------------------------------------------------------------------------------
1 |
8 |
--------------------------------------------------------------------------------
/app/src/main/res/layout/preview_black1.xml:
--------------------------------------------------------------------------------
1 |
2 |
8 |
9 |
--------------------------------------------------------------------------------
/app/src/main/res/layout/preview_black2.xml:
--------------------------------------------------------------------------------
1 |
2 |
8 |
9 |
--------------------------------------------------------------------------------
/app/src/main/res/layout/preview_black_glass.xml:
--------------------------------------------------------------------------------
1 |
2 |
8 |
9 |
--------------------------------------------------------------------------------
/app/src/main/res/layout/preview_blue.xml:
--------------------------------------------------------------------------------
1 |
2 |
8 |
9 |
--------------------------------------------------------------------------------
/app/src/main/res/layout/preview_boyish.xml:
--------------------------------------------------------------------------------
1 |
2 |
8 |
9 |
--------------------------------------------------------------------------------
/app/src/main/res/layout/preview_bright.xml:
--------------------------------------------------------------------------------
1 |
2 |
8 |
9 |
--------------------------------------------------------------------------------
/app/src/main/res/layout/preview_dark.xml:
--------------------------------------------------------------------------------
1 |
2 |
8 |
9 |
--------------------------------------------------------------------------------
/app/src/main/res/layout/preview_full_bright.xml:
--------------------------------------------------------------------------------
1 |
2 |
8 |
9 |
--------------------------------------------------------------------------------
/app/src/main/res/layout/preview_full_dark.xml:
--------------------------------------------------------------------------------
1 |
2 |
8 |
9 |
--------------------------------------------------------------------------------
/app/src/main/res/layout/preview_girly.xml:
--------------------------------------------------------------------------------
1 |
2 |
8 |
9 |
--------------------------------------------------------------------------------
/app/src/main/res/layout/preview_ninja.xml:
--------------------------------------------------------------------------------
1 |
2 |
8 |
9 |
--------------------------------------------------------------------------------
/app/src/main/res/layout/preview_popup_black1.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
--------------------------------------------------------------------------------
/app/src/main/res/layout/preview_popup_black2.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
--------------------------------------------------------------------------------
/app/src/main/res/layout/preview_popup_black_glass.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
--------------------------------------------------------------------------------
/app/src/main/res/layout/preview_popup_blue.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
--------------------------------------------------------------------------------
/app/src/main/res/layout/preview_popup_boyish.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
--------------------------------------------------------------------------------
/app/src/main/res/layout/preview_popup_bright.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
--------------------------------------------------------------------------------
/app/src/main/res/layout/preview_popup_dark.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
--------------------------------------------------------------------------------
/app/src/main/res/layout/preview_popup_full_bright.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
--------------------------------------------------------------------------------
/app/src/main/res/layout/preview_popup_full_dark.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
--------------------------------------------------------------------------------
/app/src/main/res/layout/preview_popup_girly.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
--------------------------------------------------------------------------------
/app/src/main/res/layout/preview_popup_ninja.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
--------------------------------------------------------------------------------
/app/src/main/res/layout/preview_popup_white_glass.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
--------------------------------------------------------------------------------
/app/src/main/res/layout/preview_popup_yellow.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
--------------------------------------------------------------------------------
/app/src/main/res/layout/preview_white_glass.xml:
--------------------------------------------------------------------------------
1 |
2 |
8 |
9 |
--------------------------------------------------------------------------------
/app/src/main/res/layout/preview_yellow.xml:
--------------------------------------------------------------------------------
1 |
2 |
8 |
9 |
--------------------------------------------------------------------------------
/app/src/main/res/mipmap-anydpi-v26/GhostIcon.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
--------------------------------------------------------------------------------
/app/src/main/res/mipmap-hdpi/GhostIcon_background.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Arashvscode/Ghostwebapp/d5d268e826247ea24b9b5eccdc4be0589f34aaa8/app/src/main/res/mipmap-hdpi/GhostIcon_background.png
--------------------------------------------------------------------------------
/app/src/main/res/mipmap-hdpi/GhostIcon_foreground.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Arashvscode/Ghostwebapp/d5d268e826247ea24b9b5eccdc4be0589f34aaa8/app/src/main/res/mipmap-hdpi/GhostIcon_foreground.png
--------------------------------------------------------------------------------
/app/src/main/res/mipmap-hdpi/GhostIcon_monochrome.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Arashvscode/Ghostwebapp/d5d268e826247ea24b9b5eccdc4be0589f34aaa8/app/src/main/res/mipmap-hdpi/GhostIcon_monochrome.png
--------------------------------------------------------------------------------
/app/src/main/res/mipmap-mdpi/GhostIcon_background.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Arashvscode/Ghostwebapp/d5d268e826247ea24b9b5eccdc4be0589f34aaa8/app/src/main/res/mipmap-mdpi/GhostIcon_background.png
--------------------------------------------------------------------------------
/app/src/main/res/mipmap-mdpi/GhostIcon_foreground.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Arashvscode/Ghostwebapp/d5d268e826247ea24b9b5eccdc4be0589f34aaa8/app/src/main/res/mipmap-mdpi/GhostIcon_foreground.png
--------------------------------------------------------------------------------
/app/src/main/res/mipmap-mdpi/GhostIcon_monochrome.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Arashvscode/Ghostwebapp/d5d268e826247ea24b9b5eccdc4be0589f34aaa8/app/src/main/res/mipmap-mdpi/GhostIcon_monochrome.png
--------------------------------------------------------------------------------
/app/src/main/res/mipmap-xhdpi/GhostIcon_background.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Arashvscode/Ghostwebapp/d5d268e826247ea24b9b5eccdc4be0589f34aaa8/app/src/main/res/mipmap-xhdpi/GhostIcon_background.png
--------------------------------------------------------------------------------
/app/src/main/res/mipmap-xhdpi/GhostIcon_foreground.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Arashvscode/Ghostwebapp/d5d268e826247ea24b9b5eccdc4be0589f34aaa8/app/src/main/res/mipmap-xhdpi/GhostIcon_foreground.png
--------------------------------------------------------------------------------
/app/src/main/res/mipmap-xhdpi/GhostIcon_monochrome.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Arashvscode/Ghostwebapp/d5d268e826247ea24b9b5eccdc4be0589f34aaa8/app/src/main/res/mipmap-xhdpi/GhostIcon_monochrome.png
--------------------------------------------------------------------------------
/app/src/main/res/mipmap-xxhdpi/GhostIcon_background.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Arashvscode/Ghostwebapp/d5d268e826247ea24b9b5eccdc4be0589f34aaa8/app/src/main/res/mipmap-xxhdpi/GhostIcon_background.png
--------------------------------------------------------------------------------
/app/src/main/res/mipmap-xxhdpi/GhostIcon_foreground.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Arashvscode/Ghostwebapp/d5d268e826247ea24b9b5eccdc4be0589f34aaa8/app/src/main/res/mipmap-xxhdpi/GhostIcon_foreground.png
--------------------------------------------------------------------------------
/app/src/main/res/mipmap-xxhdpi/GhostIcon_monochrome.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Arashvscode/Ghostwebapp/d5d268e826247ea24b9b5eccdc4be0589f34aaa8/app/src/main/res/mipmap-xxhdpi/GhostIcon_monochrome.png
--------------------------------------------------------------------------------
/app/src/main/res/mipmap-xxxhdpi/GhostIcon_background.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Arashvscode/Ghostwebapp/d5d268e826247ea24b9b5eccdc4be0589f34aaa8/app/src/main/res/mipmap-xxxhdpi/GhostIcon_background.png
--------------------------------------------------------------------------------
/app/src/main/res/mipmap-xxxhdpi/GhostIcon_foreground.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Arashvscode/Ghostwebapp/d5d268e826247ea24b9b5eccdc4be0589f34aaa8/app/src/main/res/mipmap-xxxhdpi/GhostIcon_foreground.png
--------------------------------------------------------------------------------
/app/src/main/res/mipmap-xxxhdpi/GhostIcon_monochrome.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Arashvscode/Ghostwebapp/d5d268e826247ea24b9b5eccdc4be0589f34aaa8/app/src/main/res/mipmap-xxxhdpi/GhostIcon_monochrome.png
--------------------------------------------------------------------------------
/app/src/main/res/mipmap/app_icon.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Arashvscode/Ghostwebapp/d5d268e826247ea24b9b5eccdc4be0589f34aaa8/app/src/main/res/mipmap/app_icon.png
--------------------------------------------------------------------------------
/app/src/main/res/mipmap/box_red.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Arashvscode/Ghostwebapp/d5d268e826247ea24b9b5eccdc4be0589f34aaa8/app/src/main/res/mipmap/box_red.png
--------------------------------------------------------------------------------
/app/src/main/res/mipmap/delete.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Arashvscode/Ghostwebapp/d5d268e826247ea24b9b5eccdc4be0589f34aaa8/app/src/main/res/mipmap/delete.png
--------------------------------------------------------------------------------
/app/src/main/res/mipmap/pencil.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Arashvscode/Ghostwebapp/d5d268e826247ea24b9b5eccdc4be0589f34aaa8/app/src/main/res/mipmap/pencil.png
--------------------------------------------------------------------------------
/app/src/main/res/mipmap/theme_1.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Arashvscode/Ghostwebapp/d5d268e826247ea24b9b5eccdc4be0589f34aaa8/app/src/main/res/mipmap/theme_1.jpg
--------------------------------------------------------------------------------
/app/src/main/res/mipmap/theme_10.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Arashvscode/Ghostwebapp/d5d268e826247ea24b9b5eccdc4be0589f34aaa8/app/src/main/res/mipmap/theme_10.jpg
--------------------------------------------------------------------------------
/app/src/main/res/mipmap/theme_11.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Arashvscode/Ghostwebapp/d5d268e826247ea24b9b5eccdc4be0589f34aaa8/app/src/main/res/mipmap/theme_11.jpg
--------------------------------------------------------------------------------
/app/src/main/res/mipmap/theme_12.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Arashvscode/Ghostwebapp/d5d268e826247ea24b9b5eccdc4be0589f34aaa8/app/src/main/res/mipmap/theme_12.jpg
--------------------------------------------------------------------------------
/app/src/main/res/mipmap/theme_2.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Arashvscode/Ghostwebapp/d5d268e826247ea24b9b5eccdc4be0589f34aaa8/app/src/main/res/mipmap/theme_2.jpg
--------------------------------------------------------------------------------
/app/src/main/res/mipmap/theme_3.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Arashvscode/Ghostwebapp/d5d268e826247ea24b9b5eccdc4be0589f34aaa8/app/src/main/res/mipmap/theme_3.jpg
--------------------------------------------------------------------------------
/app/src/main/res/mipmap/theme_4.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Arashvscode/Ghostwebapp/d5d268e826247ea24b9b5eccdc4be0589f34aaa8/app/src/main/res/mipmap/theme_4.jpg
--------------------------------------------------------------------------------
/app/src/main/res/mipmap/theme_5.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Arashvscode/Ghostwebapp/d5d268e826247ea24b9b5eccdc4be0589f34aaa8/app/src/main/res/mipmap/theme_5.jpg
--------------------------------------------------------------------------------
/app/src/main/res/mipmap/theme_6.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Arashvscode/Ghostwebapp/d5d268e826247ea24b9b5eccdc4be0589f34aaa8/app/src/main/res/mipmap/theme_6.jpg
--------------------------------------------------------------------------------
/app/src/main/res/mipmap/theme_7.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Arashvscode/Ghostwebapp/d5d268e826247ea24b9b5eccdc4be0589f34aaa8/app/src/main/res/mipmap/theme_7.jpg
--------------------------------------------------------------------------------
/app/src/main/res/mipmap/theme_8.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Arashvscode/Ghostwebapp/d5d268e826247ea24b9b5eccdc4be0589f34aaa8/app/src/main/res/mipmap/theme_8.jpg
--------------------------------------------------------------------------------
/app/src/main/res/mipmap/theme_9.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Arashvscode/Ghostwebapp/d5d268e826247ea24b9b5eccdc4be0589f34aaa8/app/src/main/res/mipmap/theme_9.jpg
--------------------------------------------------------------------------------
/app/src/main/res/xml/method.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
--------------------------------------------------------------------------------
/app/src/main/res/xml/popup.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
--------------------------------------------------------------------------------
/gradle/wrapper/gradle-wrapper.jar:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Arashvscode/Ghostwebapp/d5d268e826247ea24b9b5eccdc4be0589f34aaa8/gradle/wrapper/gradle-wrapper.jar
--------------------------------------------------------------------------------
/gradle/wrapper/gradle-wrapper.properties:
--------------------------------------------------------------------------------
1 | #Sat Aug 06 05:20:44 UTC 2022
2 | distributionBase=GRADLE_USER_HOME
3 | distributionPath=wrapper/distsdistributionUrl=https\://services.gradle.org/distributions/gradle-7.5.1-bin.zipzipStoreBase=GRADLE_USER_HOME
4 | zipStorePath=wrapper/dists
5 |
--------------------------------------------------------------------------------
/image/icon.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Arashvscode/Ghostwebapp/d5d268e826247ea24b9b5eccdc4be0589f34aaa8/image/icon.png
--------------------------------------------------------------------------------
/image/img1.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Arashvscode/Ghostwebapp/d5d268e826247ea24b9b5eccdc4be0589f34aaa8/image/img1.jpg
--------------------------------------------------------------------------------
/image/img1.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Arashvscode/Ghostwebapp/d5d268e826247ea24b9b5eccdc4be0589f34aaa8/image/img1.png
--------------------------------------------------------------------------------
/image/img2.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Arashvscode/Ghostwebapp/d5d268e826247ea24b9b5eccdc4be0589f34aaa8/image/img2.jpg
--------------------------------------------------------------------------------
/image/img3.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Arashvscode/Ghostwebapp/d5d268e826247ea24b9b5eccdc4be0589f34aaa8/image/img3.jpg
--------------------------------------------------------------------------------
/image/noname.md:
--------------------------------------------------------------------------------
1 |
2 |
--------------------------------------------------------------------------------
/settings.gradle:
--------------------------------------------------------------------------------
1 | include ':app'
2 |
--------------------------------------------------------------------------------