Skip to content

Commit

Permalink
Initial commit
Browse files Browse the repository at this point in the history
  • Loading branch information
Alex1-111 committed Jun 8, 2024
1 parent 3a291a1 commit 52ce880
Show file tree
Hide file tree
Showing 3 changed files with 57 additions and 20 deletions.
3 changes: 2 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@

[![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)
[![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)


# WavePlayerView

Expand Down
35 changes: 33 additions & 2 deletions WavePlayerView/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -63,6 +63,37 @@ publishing {
}
}

signing {
sign publishing.publications.release
publishing {
publications {
release(MavenPublication) {
from components.release
groupId = 'sound.wave.kilobyte'
artifactId = 'WavePlayerView'
version = '1.0'

pom {
name = 'WavePlayerView'
description = 'A Java library for analyzing sound directly by recording sound and plotting waves according to frequencies instantly.'
url = 'https://github.com/alex11111115/WavePlayerView'
licenses {
license {
name = 'The Apache License, Version 2.0'
url = 'http://www.apache.org/licenses/LICENSE-2.0.txt'
}
}
developers {
developer {
id = 'alex11111115'
name = 'obieda'
email = 'appsmarket55@gmail.com'
}
}
scm {
connection = 'scm:git:git://github.com/alex11111115/WavePlayerView.git'
developerConnection = 'scm:git:ssh://github.com/alex11111115/WavePlayerView.git'
url = 'https://github.com/alex11111115/WavePlayerView'
}
}
}
}
}
39 changes: 22 additions & 17 deletions gradle.properties
Original file line number Diff line number Diff line change
@@ -1,23 +1,9 @@
# إعدادات عامة للمشروع Gradle.
# مستخدمو IDE (مثل Android Studio):
# إعدادات Gradle التي تم تكوينها من خلال IDE *ستتجاوز*
# أي إعدادات محددة في هذا الملف.
# لمزيد من التفاصيل حول كيفية تكوين بيئة البناء الخاصة بك، قم بزيارة
# http://www.gradle.org/docs/current/userguide/build_environment.html

# تحديد الوسيطات المستخدمة بواسطة عملية الـ JVM.
# هذا الإعداد مفيد بشكل خاص لتعديل إعدادات الذاكرة.
# Project-wide Gradle settings.
org.gradle.jvmargs=-Xmx512m -Dfile.encoding=UTF-8

# عند التكوين، سيعمل Gradle في وضع التوازي التجريبي.
# يجب استخدام هذا الخيار فقط مع المشاريع غير المترابطة. لمزيد من التفاصيل، قم بزيارة
# http://www.gradle.org/docs/current/userguide/multi_project_builds.html#sec:decoupled_projects
# org.gradle.parallel=true

# هيكل حزمة AndroidX لجعل من الواضح أي الحزم مدمجة مع
# نظام تشغيل Android، وأي منها معبأ مع APK الخاص بتطبيقك
# https://developer.android.com/topic/libraries/support-library/androidx-rn
# Android-specific settings.
android.useAndroidX=true
android.enableJetifier=true

# نمط الكود الخاص بـ Kotlin لهذا المشروع: "رسمي" أو "قديم":
kotlin.code.style=official
Expand All @@ -26,3 +12,22 @@ kotlin.code.style=official
# الموارد المعلنة في المكتبة نفسها ولا شيء من تبعيات المكتبة،
# مما يقلل من حجم فئة R لتلك المكتبة
android.nonTransitiveRClass=true

# Versioning
VERSION_NAME=1.0
VERSION_CODE=1

# Publishing details
GROUP_ID=sound.wave.kilobyte
ARTIFACT_ID=WavePlayerView
POM_NAME=WavePlayerView
POM_DESCRIPTION=A Java library for analyzing sound directly by recording sound and plotting waves according to frequencies instantly.
POM_URL=https://github.com/alex11111115/WavePlayerView
POM_LICENSE_NAME=The Apache License, Version 2.0
POM_LICENSE_URL=http://www.apache.org/licenses/LICENSE-2.0.txt
POM_DEVELOPER_ID=alex11111115
POM_DEVELOPER_NAME=obieda
POM_DEVELOPER_EMAIL=appsmarket55@gmail.com
POM_SCM_CONNECTION=scm:git:git://github.com/alex11111115/WavePlayerView.git
POM_SCM_DEVELOPER_CONNECTION=scm:git:ssh://github.com/alex11111115/WavePlayerView.git
POM_SCM_URL=https://github.com/alex11111115/WavePlayerView

0 comments on commit 52ce880

Please sign in to comment.