Skip to content
This repository was archived by the owner on Jun 30, 2024. It is now read-only.

Commit a8a5ce7

Browse files
committed
publish
0 parents  commit a8a5ce7

File tree

68 files changed

+5900
-0
lines changed

Some content is hidden

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

68 files changed

+5900
-0
lines changed

.gitignore

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
.idea
2+
.gradle
3+
.ds_store
4+
*.apk
5+
local.properties

Clock-view/.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
/build

Clock-view/build.gradle

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
apply plugin: 'com.android.library'
2+
apply from: "../publish.gradle"
3+
android {
4+
namespace "com.arbelkilani.clock"
5+
compileSdk compile_sdk_version
6+
defaultConfig {
7+
minSdkVersion min_sdk_version
8+
targetSdkVersion target_sdk_version
9+
}
10+
compileOptions {
11+
targetCompatibility java_version
12+
sourceCompatibility java_version
13+
}
14+
buildTypes {
15+
release {
16+
minifyEnabled false
17+
isDefault true
18+
}
19+
}
20+
}
21+
ext {
22+
artifactId = "Clock-view"
23+
projectUrl = "https://github.com/arbelkilani/Clock-view"
24+
projectLicense = "The Apache Software License, Version 2.0"
25+
projectLicenseUrl = "http://www.apache.org/licenses/LICENSE-2.0.txt"
26+
releaseVersion = "2.1.5-beta01"
27+
}

0 commit comments

Comments
 (0)