Skip to content

Commit 52ce880

Browse files
committed
Initial commit
1 parent 3a291a1 commit 52ce880

File tree

3 files changed

+57
-20
lines changed

3 files changed

+57
-20
lines changed

README.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11

2-
[![StandWithPalestine](https://raw.githubusercontent.com/karim-eg/StandWithPalestine/main/assets/palestine_badge.svg)](https://github.com/karim-eg/StandWithPalestine) [![](https://jitpack.io/v/alex11111115/WavePlayerView.svg)](https://jitpack.io/#alex11111115/WavePlayerView)
2+
[![StandWithPalestine](https://raw.githubusercontent.com/karim-eg/StandWithPalestine/main/assets/palestine_badge.svg)](https://github.com/karim-eg/StandWithPalestine) [![](https://jitpack.io/v/alex11111115/WavePlayerView.svg)](https://jitpack.io/#alex11111115/WavePlayerView) [![API](https://img.shields.io/badge/API-21%2B-blue.svg?style=flat)](https://android-arsenal.com/api?level=21) ![http://developer.android.com/index.html](https://github.com/alex11111115/WavePlayerView/assets/96258291/3fc4547a-a929-43c3-8cf0-ee16b066fb7e)
3+
34

45
# WavePlayerView
56

WavePlayerView/build.gradle

Lines changed: 33 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -63,6 +63,37 @@ publishing {
6363
}
6464
}
6565

66-
signing {
67-
sign publishing.publications.release
66+
publishing {
67+
publications {
68+
release(MavenPublication) {
69+
from components.release
70+
groupId = 'sound.wave.kilobyte'
71+
artifactId = 'WavePlayerView'
72+
version = '1.0'
73+
74+
pom {
75+
name = 'WavePlayerView'
76+
description = 'A Java library for analyzing sound directly by recording sound and plotting waves according to frequencies instantly.'
77+
url = 'https://github.com/alex11111115/WavePlayerView'
78+
licenses {
79+
license {
80+
name = 'The Apache License, Version 2.0'
81+
url = 'http://www.apache.org/licenses/LICENSE-2.0.txt'
82+
}
83+
}
84+
developers {
85+
developer {
86+
id = 'alex11111115'
87+
name = 'obieda'
88+
email = 'appsmarket55@gmail.com'
89+
}
90+
}
91+
scm {
92+
connection = 'scm:git:git://github.com/alex11111115/WavePlayerView.git'
93+
developerConnection = 'scm:git:ssh://github.com/alex11111115/WavePlayerView.git'
94+
url = 'https://github.com/alex11111115/WavePlayerView'
95+
}
96+
}
97+
}
98+
}
6899
}

gradle.properties

Lines changed: 22 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -1,23 +1,9 @@
1-
# إعدادات عامة للمشروع Gradle.
2-
# مستخدمو IDE (مثل Android Studio):
3-
# إعدادات Gradle التي تم تكوينها من خلال IDE *ستتجاوز*
4-
# أي إعدادات محددة في هذا الملف.
5-
# لمزيد من التفاصيل حول كيفية تكوين بيئة البناء الخاصة بك، قم بزيارة
6-
# http://www.gradle.org/docs/current/userguide/build_environment.html
7-
8-
# تحديد الوسيطات المستخدمة بواسطة عملية الـ JVM.
9-
# هذا الإعداد مفيد بشكل خاص لتعديل إعدادات الذاكرة.
1+
# Project-wide Gradle settings.
102
org.gradle.jvmargs=-Xmx512m -Dfile.encoding=UTF-8
113

12-
# عند التكوين، سيعمل Gradle في وضع التوازي التجريبي.
13-
# يجب استخدام هذا الخيار فقط مع المشاريع غير المترابطة. لمزيد من التفاصيل، قم بزيارة
14-
# http://www.gradle.org/docs/current/userguide/multi_project_builds.html#sec:decoupled_projects
15-
# org.gradle.parallel=true
16-
17-
# هيكل حزمة AndroidX لجعل من الواضح أي الحزم مدمجة مع
18-
# نظام تشغيل Android، وأي منها معبأ مع APK الخاص بتطبيقك
19-
# https://developer.android.com/topic/libraries/support-library/androidx-rn
4+
# Android-specific settings.
205
android.useAndroidX=true
6+
android.enableJetifier=true
217

228
# نمط الكود الخاص بـ Kotlin لهذا المشروع: "رسمي" أو "قديم":
239
kotlin.code.style=official
@@ -26,3 +12,22 @@ kotlin.code.style=official
2612
# الموارد المعلنة في المكتبة نفسها ولا شيء من تبعيات المكتبة،
2713
# مما يقلل من حجم فئة R لتلك المكتبة
2814
android.nonTransitiveRClass=true
15+
16+
# Versioning
17+
VERSION_NAME=1.0
18+
VERSION_CODE=1
19+
20+
# Publishing details
21+
GROUP_ID=sound.wave.kilobyte
22+
ARTIFACT_ID=WavePlayerView
23+
POM_NAME=WavePlayerView
24+
POM_DESCRIPTION=A Java library for analyzing sound directly by recording sound and plotting waves according to frequencies instantly.
25+
POM_URL=https://github.com/alex11111115/WavePlayerView
26+
POM_LICENSE_NAME=The Apache License, Version 2.0
27+
POM_LICENSE_URL=http://www.apache.org/licenses/LICENSE-2.0.txt
28+
POM_DEVELOPER_ID=alex11111115
29+
POM_DEVELOPER_NAME=obieda
30+
POM_DEVELOPER_EMAIL=appsmarket55@gmail.com
31+
POM_SCM_CONNECTION=scm:git:git://github.com/alex11111115/WavePlayerView.git
32+
POM_SCM_DEVELOPER_CONNECTION=scm:git:ssh://github.com/alex11111115/WavePlayerView.git
33+
POM_SCM_URL=https://github.com/alex11111115/WavePlayerView

0 commit comments

Comments
 (0)