<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:dc="http://purl.org/dc/elements/1.1/">
  <channel>
    <title>DEV Community: Rishav deb Roy</title>
    <description>The latest articles on DEV Community by Rishav deb Roy (@rishav_debroy_37a6201db3).</description>
    <link>https://dev.to/rishav_debroy_37a6201db3</link>
    <image>
      <url>https://media2.dev.to/dynamic/image/width=90,height=90,fit=cover,gravity=auto,format=auto/https:%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Fuser%2Fprofile_image%2F1973991%2Fdcea949b-3188-47cf-b62f-f9800333c367.jpg</url>
      <title>DEV Community: Rishav deb Roy</title>
      <link>https://dev.to/rishav_debroy_37a6201db3</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/rishav_debroy_37a6201db3"/>
    <language>en</language>
    <item>
      <title>Maven Publication Issue</title>
      <dc:creator>Rishav deb Roy</dc:creator>
      <pubDate>Wed, 11 Sep 2024 10:41:45 +0000</pubDate>
      <link>https://dev.to/rishav_debroy_37a6201db3/maven-publication-issue-403p</link>
      <guid>https://dev.to/rishav_debroy_37a6201db3/maven-publication-issue-403p</guid>
      <description>&lt;p&gt;Hi, &lt;br&gt;
I have created the SDK with the aar file in build folder but when I check in jitpack.io then the log is coming like these&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;What went wrong:
Execution failed for task ':Test:publishReleasePublicationToMavenLocal'.
&amp;gt; Failed to publish publication 'release' to repository 'mavenLocal'
&amp;gt; Invalid publication 'release': artifact file does not exist: '/home/jitpack/build/Test/property(org.gradle.api.file.Directory, fixed(class org.gradle.api.internal.file.DefaultFilePropertyFactory$FixedDirectory, /home/jitpack/build/Test/build))/outputs/aar/Test-release.aar'&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Please anyone help me with these issue to reolve it?&lt;/p&gt;

</description>
      <category>help</category>
    </item>
    <item>
      <title>SDK releted Issue</title>
      <dc:creator>Rishav deb Roy</dc:creator>
      <pubDate>Wed, 11 Sep 2024 06:13:25 +0000</pubDate>
      <link>https://dev.to/rishav_debroy_37a6201db3/sdk-releted-issue-51np</link>
      <guid>https://dev.to/rishav_debroy_37a6201db3/sdk-releted-issue-51np</guid>
      <description>&lt;p&gt;Hi, &lt;br&gt;
I want build an SDk where I have put all the required changes and try to sync the build file but I am getting the below issue&lt;br&gt;
Starting Gradle Daemon...&lt;br&gt;
Gradle Daemon started in 1 s 741 ms&lt;/p&gt;

&lt;p&gt;FAILURE: Build completed with 2 failures.&lt;/p&gt;

&lt;h2&gt;
  
  
  1: Task failed with an exception.
&lt;/h2&gt;

&lt;ul&gt;
&lt;li&gt;&lt;p&gt;Where:&lt;br&gt;
Build file '/Users/fci-ma2076/Documents/projects/T/Test/build.gradle.kts' line: 44&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;What went wrong:&lt;br&gt;
SoftwareComponent with name 'release' not found.&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Try:&lt;/p&gt;

&lt;blockquote&gt;
&lt;p&gt;Run with --info or --debug option to get more log output.&lt;br&gt;
Run with --scan to get full insights.&lt;br&gt;
Get more help at &lt;a href="https://help.gradle.org" rel="noopener noreferrer"&gt;https://help.gradle.org&lt;/a&gt;.&lt;/p&gt;
&lt;/blockquote&gt;
&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;This is my build.gradle for library folder&lt;br&gt;
plugins {&lt;br&gt;
    id("maven-publish")&lt;br&gt;
    id("com.android.library")&lt;br&gt;
}&lt;/p&gt;

&lt;p&gt;android {&lt;br&gt;
    namespace = "com.Test"&lt;br&gt;
    compileSdk = 34&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;defaultConfig {
    minSdk = 21
    lint.targetSdk = 35
    testInstrumentationRunner = "androidx.test.runner.AndroidJUnitRunner"
    consumerProguardFiles("consumer-rules.pro")
}

buildTypes {
    getByName("release") {
        isMinifyEnabled = false
        proguardFiles(
            getDefaultProguardFile("proguard-android-optimize.txt"),
            "proguard-rules.pro"
        )
    }
}
compileOptions {
    sourceCompatibility = JavaVersion.VERSION_17
    targetCompatibility = JavaVersion.VERSION_17
}
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;

&lt;p&gt;}&lt;/p&gt;

&lt;p&gt;dependencies {&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;implementation(libs.androidx.appcompat)
implementation(libs.material)
testImplementation(libs.junit)
androidTestImplementation(libs.androidx.junit)
androidTestImplementation(libs.androidx.espresso.core)
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;

&lt;p&gt;}&lt;/p&gt;

&lt;p&gt;publishing {&lt;br&gt;
    publications {&lt;br&gt;
        create("release") {&lt;br&gt;
            from(components["release"])&lt;br&gt;
            groupId = "io.github.Rishav1995-roy"&lt;br&gt;
            artifactId = "test-library"&lt;br&gt;
            version = "1.0.3"&lt;br&gt;
            artifact(tasks["bundleReleaseAar"])&lt;br&gt;
        }&lt;br&gt;
    }&lt;br&gt;
    repositories {&lt;br&gt;
        maven {&lt;br&gt;
            url = uri("file://${rootProject.projectDir}/repo")&lt;br&gt;
        }&lt;br&gt;
    }&lt;br&gt;
}&lt;br&gt;
Please can anyone suggest me what should I need to go in this file so that this issue will not occur&lt;/p&gt;

</description>
    </item>
    <item>
      <title>Need Help</title>
      <dc:creator>Rishav deb Roy</dc:creator>
      <pubDate>Mon, 09 Sep 2024 07:15:42 +0000</pubDate>
      <link>https://dev.to/rishav_debroy_37a6201db3/need-help-542d</link>
      <guid>https://dev.to/rishav_debroy_37a6201db3/need-help-542d</guid>
      <description>&lt;p&gt;Hi I have created one sample library and deployed it on github and when I publish it on jitpack.io then in log report it showing me these below issue. I have checked all the sections in the code and run all the required things but no issue is happening there. Can anyone help me what am I missing here&lt;br&gt;
&lt;a href="![Image%20description](https://dev-to-uploads.s3.amazonaws.com/uploads/articles/5vulp7plu0lh3ik9jlta.png)"&gt;&lt;/a&gt;&lt;/p&gt;

</description>
      <category>help</category>
    </item>
    <item>
      <title>Need help for create SDK</title>
      <dc:creator>Rishav deb Roy</dc:creator>
      <pubDate>Tue, 27 Aug 2024 06:58:30 +0000</pubDate>
      <link>https://dev.to/rishav_debroy_37a6201db3/need-help-for-create-sdk-4fc3</link>
      <guid>https://dev.to/rishav_debroy_37a6201db3/need-help-for-create-sdk-4fc3</guid>
      <description>&lt;p&gt;Hi team, &lt;br&gt;
I want to build an SDK for mobile app which will be accesable from any langugae(e.g. Flutter, Native Android, iOS, React native). I need to know what will be the approach should I take to build the SDK?&lt;br&gt;
I need a brief idea about what are steps should I follow to create that SDK.&lt;/p&gt;

</description>
    </item>
  </channel>
</rss>
