Android Network Intents (ANI)

repository·master·Indexed 19 days ago

https://github.com/pocmo/android-network-intents

A library for sending and receiving Android Intent objects over a network using UDP multicast, designed for service discovery and peer-to-peer communication between devices on the same network.

Tokens
281
Snippets
1
Records
2
Agent score
15%

What's inside android-network-intents

  1. What is Android Network Intents (ANI)?

    master
    Android Network Intents (ANI) is a library designed to send Android Intent objects to listening apps or devices over a network using multicast (UDP). It is primarily used for implementing simple app or service discovery protocols, allowing devices to send and receive Intents without needing to know the specific receivers on the network beforehand.
  2. Install Android Network Intents via Maven or Gradle

    master

    You can include the library in your Android project using either Maven (via jcenter) or Gradle. The current version is 1.0.0.

    ### Maven (jcenter)
    ```xml
    <dependency>
      <groupId>com.androidzeitgeist.android-network-intents</groupId>
      <artifactId>android-network-intents</artifactId>
      <version>1.0.0</version>
    </dependency>

    Gradle

    compile 'com.androidzeitgeist.android-network-intents:android-network-intents:1.0.0'