Skip to content

Commit 1e32ca8

Browse files
committed
sample app
1 parent ad8f19f commit 1e32ca8

File tree

12 files changed

+446
-0
lines changed

12 files changed

+446
-0
lines changed

build.gradle

Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
plugins {
2+
id 'java'
3+
id 'application'
4+
}
5+
6+
group 'io.imagekit.sampleapp'
7+
version '1.0-SNAPSHOT'
8+
9+
sourceCompatibility = 1.8
10+
11+
repositories {
12+
mavenCentral()
13+
}
14+
15+
application {
16+
mainClassName 'io.imagekit.sampleapp.App'
17+
}
18+
19+
test {
20+
useJUnitPlatform()
21+
}
22+
23+
dependencies {
24+
compile fileTree(include: ['*.jar'], dir: 'libs')
25+
compile project(':imagekit-sdk')
26+
testCompile group: 'junit', name: 'junit', version: '4.12'
27+
}
28+

libs/commons-codec-1.13.jar

336 KB
Binary file not shown.

libs/converter-gson-2.3.0.jar

5.71 KB
Binary file not shown.

libs/gson-2.7.jar

227 KB
Binary file not shown.

libs/okhttp-3.10.0.jar

402 KB
Binary file not shown.

libs/okio-1.14.0.jar

83.7 KB
Binary file not shown.

libs/retrofit-2.4.0.jar

88.9 KB
Binary file not shown.

local.properties

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
## This file must *NOT* be checked into Version Control Systems,
2+
# as it contains information specific to your local configuration.
3+
#
4+
# Location of the SDK. This is only used by Gradle.
5+
# For customization when using a Version Control System, please read the
6+
# header note.
7+
#Tue Jun 28 12:15:07 IST 2022
8+
sdk.dir=/home/khushboo/Android/Sdk

src/main/java/io/imagekit/sampleapp/App.java

Lines changed: 383 additions & 0 deletions
Large diffs are not rendered by default.
Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
package io.imagekit.sampleapp;
2+
3+
public class Color {
4+
public static final String ANSI_RESET = "\u001B[0m";
5+
public static final String ANSI_BLACK = "\u001B[30m";
6+
public static final String ANSI_RED = "\u001B[31m";
7+
public static final String ANSI_GREEN = "\u001B[32m";
8+
public static final String ANSI_YELLOW = "\u001B[33m";
9+
public static final String ANSI_BLUE = "\u001B[34m";
10+
public static final String ANSI_PURPLE = "\u001B[35m";
11+
public static final String ANSI_CYAN = "\u001B[36m";
12+
public static final String ANSI_WHITE = "\u001B[37m";
13+
public static final String ANSI_BLACK_BACKGROUND = "\u001B[40m";
14+
public static final String ANSI_RED_BACKGROUND = "\u001B[41m";
15+
public static final String ANSI_GREEN_BACKGROUND = "\u001B[42m";
16+
public static final String ANSI_YELLOW_BACKGROUND = "\u001B[43m";
17+
public static final String ANSI_BLUE_BACKGROUND = "\u001B[44m";
18+
public static final String ANSI_PURPLE_BACKGROUND = "\u001B[45m";
19+
public static final String ANSI_CYAN_BACKGROUND = "\u001B[46m";
20+
public static final String ANSI_WHITE_BACKGROUND = "\u001B[47m";
21+
}

0 commit comments

Comments
 (0)