This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
all the possible ways for communication between two Android applications on the same device, | |
including Socket.IO, Intents, Broadcasts, Content Providers, Bound Services, and more. | |
Each method will be clearly explained with code examples, | |
specifying which parts go into Application A and Application B. | |
Overview of Communication Methods | |
1. Explicit Intents | |
2. Implicit Intents | |
3. Broadcast Receivers |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package com.ao.alkhalilprojectjava.appUtils.filesUpload; | |
import android.annotation.SuppressLint; | |
import android.content.ContentUris; | |
import android.content.Context; | |
import android.content.CursorLoader; | |
import android.database.Cursor; | |
import android.net.Uri; | |
import android.os.Build; | |
import android.os.Environment; |