diff --git a/gallery/build.gradle b/gallery/build.gradle
index 4fc9deb4359b816c252c9d1e41a4d303c0c102f1..c3b391454905831edd4d7e19a577b8815636dbcd 100644
--- a/gallery/build.gradle
+++ b/gallery/build.gradle
@@ -3,7 +3,6 @@ apply plugin: 'org.jetbrains.kotlin.android'
 apply plugin: 'androidx.navigation.safeargs.kotlin'
 apply plugin: 'kotlin-kapt'
 apply plugin: 'dagger.hilt.android.plugin'
-apply plugin: 'maven-publish'
 
 
 android {
@@ -39,12 +38,6 @@ android {
                 "-opt-in=kotlinx.coroutines.ExperimentalCoroutinesApi",
         ]
     }
-    publishing {
-        singleVariant("release") {
-            withSourcesJar()
-            withJavadocJar()
-        }
-    }
 }
 
 dependencies {
@@ -65,19 +58,4 @@ dependencies {
 
 kapt {
     correctErrorTypes = true
-}
-
-
-publishing {
-    publications {
-        release(MavenPublication) {
-            groupId = rootProject.ext.modules_groupId
-            artifactId = "gallery"
-            version rootProject.ext.modules_version
-
-            afterEvaluate {
-                from components.release
-            }
-        }
-    }
 }
\ No newline at end of file