Skip to content

Commit

Permalink
Fix #158
Browse files Browse the repository at this point in the history
  • Loading branch information
HBiSoft committed Mar 14, 2024
1 parent 471df27 commit 726c5e5
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 1 deletion.
10 changes: 9 additions & 1 deletion hbrecorder/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,13 @@ android {
}
namespace 'com.hbisoft.hbrecorder'

publishing {
singleVariant("release") {
withSourcesJar()
withJavadocJar()
}
}

}

dependencies {
Expand All @@ -36,9 +43,10 @@ afterEvaluate {
publications {
// Creates a Maven publication called "release".
release(MavenPublication) {
from components.properties.release
from components.release
groupId = 'com.github.HBiSoft'
artifactId = 'HBRecorder'
version = '3.0.3'
}
}
}
Expand Down
1 change: 1 addition & 0 deletions hbrecorder/src/main/AndroidManifest.xml
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools">
<uses-permission android:name="android.permission.FOREGROUND_SERVICE_MEDIA_PROJECTION" />

<application
tools:targetApi="q">
Expand Down

0 comments on commit 726c5e5

Please sign in to comment.