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:58 — forked from codinginflow/AndroidManifest.xml
OkHttp GET Request Tutorial
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.codinginflow.okhttprequestexample">
<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 13:57 — forked from codinginflow/AndroidManifest.xml
Volley Tutorial Part 2
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.codinginflow.volleysingletonexample">
<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 13:48 — forked from codinginflow/AndroidManifest.xml
Volley Tutorial Part 1
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.codinginflow.jsonparsingexample">
<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 / Employee.java
Created April 27, 2023 13:35 — forked from codinginflow/Employee.java
GSON Tutorial Part 4
package com.codinginflow.gsonexample;
import com.google.gson.annotations.Expose;
public class Employee {
@Expose
private String firstName;
@Expose(serialize = false)
private int age;
@biswa-rx
biswa-rx / Address.java
Created April 27, 2023 13:35 — forked from codinginflow/Address.java
GSON Tutorial Part 3
package com.codinginflow.gsonexample;
import com.google.gson.annotations.SerializedName;
public class Address {
@SerializedName("country")
private String mCountry;
@SerializedName("city")
private String mCity;
@biswa-rx
biswa-rx / Address.java
Created April 27, 2023 13:35 — forked from codinginflow/Address.java
GSON Tutorial Part 2
package com.codinginflow.gsonexample;
import com.google.gson.annotations.SerializedName;
public class Address {
@SerializedName("country")
private String mCountry;
@SerializedName("city")
private String mCity;
@biswa-rx
biswa-rx / Employee.java
Created April 27, 2023 13:35 — forked from codinginflow/Employee.java
GSON Tutorial Part 1
package com.codinginflow.gsonexample;
import com.google.gson.annotations.SerializedName;
public class Employee {
@SerializedName("first_name")
private String mFirstName;
@SerializedName("age")
private int mAge;
@SerializedName("mail")
@biswa-rx
biswa-rx / AndroidManifest.xml
Created April 27, 2023 13:16 — forked from codinginflow/AndroidManifest.xml
Retrofit Tutorial Part 6
<?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 13:16 — forked from codinginflow/AndroidManifest.xml
Retrofit Tutorial Part 5
<?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 13:15 — forked from codinginflow/AndroidManifest.xml
Retrofit Tutorial Part 4
<?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"