<?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>The Ops Community ⚙️: Krunchyroll</title>
    <description>The latest articles on The Ops Community ⚙️ by Krunchyroll (@sarahben).</description>
    <link>https://community.ops.io/sarahben</link>
    <image>
      <url>https://community.ops.io/images/UHEXytNOqrrdrEzr1ubPBCRHtDCZZJjoxtqLNEx9_YE/rs:fill:90:90/g:sm/mb:500000/ar:1/aHR0cHM6Ly9jb21t/dW5pdHkub3BzLmlv/L3JlbW90ZWltYWdl/cy91cGxvYWRzL3Vz/ZXIvcHJvZmlsZV9p/bWFnZS81MjI3LzEz/MGYwMzRmLWE1NmUt/NGM3ZC05ZjBkLWI2/Njk0YjQ3NDEyYi5w/bmc</url>
      <title>The Ops Community ⚙️: Krunchyroll</title>
      <link>https://community.ops.io/sarahben</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://community.ops.io/feed/sarahben"/>
    <language>en</language>
    <item>
      <title>How to create your own m3u8 extension without a RTMP Server?</title>
      <dc:creator>Krunchyroll</dc:creator>
      <pubDate>Mon, 21 Jul 2025 11:06:57 +0000</pubDate>
      <link>https://community.ops.io/sarahben/how-to-create-your-own-m3u8-extension-without-a-rtmp-server-3f14</link>
      <guid>https://community.ops.io/sarahben/how-to-create-your-own-m3u8-extension-without-a-rtmp-server-3f14</guid>
      <description>&lt;p&gt;Hi, i need to know how can we generate the m3u8 extension and host it on any website like &lt;a href="https://smartcrichd.com/live/" rel="noopener noreferrer"&gt;smartcric&lt;/a&gt;. What would be the procedure to integrate it without using any RTMP server. Please guide.&lt;/p&gt;

</description>
    </item>
    <item>
      <title>How to update android app via github</title>
      <dc:creator>Krunchyroll</dc:creator>
      <pubDate>Sat, 08 Mar 2025 19:51:39 +0000</pubDate>
      <link>https://community.ops.io/sarahben/how-to-update-android-app-via-github-2aob</link>
      <guid>https://community.ops.io/sarahben/how-to-update-android-app-via-github-2aob</guid>
      <description>&lt;p&gt;To update an Android app via GitHub, you can use GitHub Actions to automate the build and deployment process. Here’s a step-by-step guide:&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;Push Your Updates to GitHub
Make the necessary changes in your Android app project like &lt;a href="https://krunchyrollapk.com" rel="noopener noreferrer"&gt;crunchyroll premium apk&lt;/a&gt;.
Commit and push the updated code to your GitHub repository.&lt;/li&gt;
&lt;li&gt;Set Up GitHub Actions for CI/CD
Navigate to your repository on GitHub.
Go to the Actions tab and create a new workflow.
Use the following sample GitHub Actions YAML file (.github/workflows/android-ci.yml) to automate builds:
yaml
Copy
Edit
name: Android CI/CD&lt;/li&gt;
&lt;/ol&gt;

&lt;p&gt;on:&lt;br&gt;
  push:&lt;br&gt;
    branches:&lt;br&gt;
      - main&lt;/p&gt;

&lt;p&gt;jobs:&lt;br&gt;
  build:&lt;br&gt;
    runs-on: ubuntu-latest&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;steps:
  - name: Checkout repository
    uses: actions/checkout@v2

  - name: Set up JDK
    uses: actions/setup-java@v1
    with:
      java-version: '17'

  - name: Set up Android SDK
    uses: android-actions/setup-android@v2

  - name: Build APK
    run: ./gradlew assembleRelease

  - name: Upload APK
    uses: actions/upload-artifact@v2
    with:
      name: app-release
      path: app/build/outputs/apk/release/app-release.apk
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;

&lt;ol&gt;
&lt;li&gt;Deploy Your Updated App
If you want to automatically publish the updated app to the Google Play Store, you can use Fastlane or Google Play Developer API:&lt;/li&gt;
&lt;/ol&gt;

&lt;p&gt;Using Fastlane&lt;br&gt;
Install Fastlane and set up fastlane in your Android project.&lt;br&gt;
Add this GitHub Action step to deploy your app:&lt;br&gt;
yaml&lt;br&gt;
Copy&lt;br&gt;
Edit&lt;br&gt;
      - name: Deploy to Google Play&lt;br&gt;
        run: fastlane android upload_to_play_store&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;Trigger the Update
Once the workflow is set up, every time you push an update to GitHub, it will:
✔ Build the updated APK/AAB
✔ Upload it as an artifact
✔ Deploy it (if configured)&lt;/li&gt;
&lt;/ol&gt;

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