Skip to content
This repository was archived by the owner on May 11, 2025. It is now read-only.

codeanticode/processing-android

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 

Repository files navigation

Processing Android Maven Repository

This is the Maven repository with the processing-core library.

To import into your project add https://raw.github.com/processing/processing-android/repository/ as a maven repository in the settings.gradle file of the project, under the dependencyResolutionManagement block:

dependencyResolutionManagement {
    repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS)
    repositories {
        google()
        mavenCentral()
        maven {
            url "https://raw.github.com/processing/processing-android/repository/"
        }
    }
}

Then you should able to incorporate processing-core as a dependency in the build.gradle file:

dependencies {
    implementation 'org.processing.android:processing-core:4.6.0'
}

More information below about declaring respositories in Gradle:

https://docs.gradle.org/current/userguide/declaring_repositories.html

About

Processing mode and core library to create Android apps with Processing

Resources

Stars

Watchers

Forks

Packages

No packages published

Languages

  • Java 87.1%
  • Processing 11.1%
  • GLSL 1.4%
  • Other 0.4%