Skip to content

Fox2Code/FoxCompat

Repository files navigation

FoxCompat

Android library for my apps. Work smarter, not harder!

Note: Library is still need some refinements.

You can check the developer documentation!

Compatibility & Size

Required libraries

Note: Required libraries are imported automatically.

Optional libraries

Note: Optional libraries are not imported automatically, and not required to use this library, but improve some features of the library.

Supported ROMs

This library contain code to improve support for the following ROMs:

  • LineageOS/CyanogenMod (Including forks)
  • OneUI/SamsungExperience (Including ports)

Setup

Gradle

Add jitpack, example to add to settings.gradle:

// Only add if `dependencyResolutionManagement` already exists
dependencyResolutionManagement {
    repositories {
        maven {
            url 'https://jitpack.io'
        }
    }
}
// Only add "repositories" if "dependencyResolutionManagement" didn't exists in "settings.gradle"
repositories {
    maven {
        url 'https://jitpack.io'
    }
}

// Add to existing dependencies block
dependencies {
    implementation 'com.fox2code:FoxCompat:0.1.5'
}