Skip to content

Instantly share code, notes, and snippets.

View biswa-rx's full-sized avatar

BISWARANJAN BEHERA biswa-rx

View GitHub Profile
@biswa-rx
biswa-rx / AndroidManifest.xml
Created April 27, 2023 13:08
Retrofit Tutorial Part 3
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.codinginflow.retrofitexample">
<uses-permission android:name="android.permission.INTERNET" />
<application
android:allowBackup="true"
android:icon="@mipmap/ic_launcher"
android:label="@string/app_name"
@biswa-rx
biswa-rx / AndroidManifest.xml
Created April 27, 2023 12:52
Retrofit Tutorial Part 2
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.codinginflow.retrofitexample">
<uses-permission android:name="android.permission.INTERNET" />
<application
android:allowBackup="true"
android:icon="@mipmap/ic_launcher"
android:label="@string/app_name"
@biswa-rx
biswa-rx / Broadcast receiving app: AndroidManifest.xml
Created April 11, 2023 19:18
BroadcastReceiver Tutorial Part 5
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.codinginflow.broadcastexample">
<application
android:allowBackup="true"
android:icon="@mipmap/ic_launcher"
android:label="@string/app_name"
android:roundIcon="@mipmap/ic_launcher_round"
android:supportsRtl="true"
@biswa-rx
biswa-rx / Broadcast receiving app: AndroidManifest.xml
Created April 10, 2023 18:06
BroadcastReceiver Tutorial Part 4
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.codinginflow.broadcastexample">
<application
android:allowBackup="true"
android:icon="@mipmap/ic_launcher"
android:label="@string/app_name"
android:roundIcon="@mipmap/ic_launcher_round"
android:supportsRtl="true"
@biswa-rx
biswa-rx / Broadcast receiving app : MainActivity.java
Created April 10, 2023 16:33
BroadcastReceiver Tutorial Part 3
package com.codinginflow.broadcastexample;
import android.content.IntentFilter;
import android.support.v7.app.AppCompatActivity;
import android.os.Bundle;
public class MainActivity extends AppCompatActivity {
ExampleBroadcastReceiver exampleBroadcastReceiver = new ExampleBroadcastReceiver();
@Override
@biswa-rx
biswa-rx / AndroidManifest.xml
Created April 10, 2023 16:22
BroadcastReceiver Tutorial Part 2
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.codinginflow.broadcastexample">
<application
android:allowBackup="true"
android:icon="@mipmap/ic_launcher"
android:label="@string/app_name"
android:roundIcon="@mipmap/ic_launcher_round"
android:supportsRtl="true"
@biswa-rx
biswa-rx / AndroidManifest.xml
Created April 10, 2023 16:11
BroadcastReceiver Tutorial Part 1
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.codinginflow.broadcastexample">
<uses-permission android:name="android.permission.RECEIVE_BOOT_COMPLETED" />
<application
android:allowBackup="true"
android:icon="@mipmap/ic_launcher"
android:label="@string/app_name"
@biswa-rx
biswa-rx / AndroidManifest.xml
Created April 10, 2023 15:33
JobIntentService Tutorial
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.codinginflow.jobintentserviceexample">
<uses-permission android:name="android.permission.WAKE_LOCK" />
<application
android:allowBackup="true"
android:icon="@mipmap/ic_launcher"
android:label="@string/app_name"
@biswa-rx
biswa-rx / AndroidManifest.xml
Created April 10, 2023 15:33
IntentService Tutorial
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.codinginflow.intentserviceexample">
<uses-permission android:name="android.permission.WAKE_LOCK" />
<uses-permission android:name="android.permission.FOREGROUND_SERVICE" />
<application
android:name=".App"
android:allowBackup="true"
@biswa-rx
biswa-rx / AndroidManifest.xml
Created April 10, 2023 15:33
Foreground Service Tutorial
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.codinginflow.foregroundserviceexample">
<application
android:name=".App"
android:allowBackup="true"
android:icon="@mipmap/ic_launcher"
android:label="@string/app_name"
android:roundIcon="@mipmap/ic_launcher_round"