Skip to content

auxor/AppWithModifiedFramework

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

1 Commit
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

AppWithModifiedFramework

This is an demo project to use modified android framework.

  1. Modify the aosp framework
  2. Build and get the classes.jar in out/target/common/obj/JAVA_LIBRARIES/framework_intermediates/
  3. Put the classes.jar in libs
  4. Modify the root project's build.gradle (or subproject)
subprojects {
    gradle.projectsEvaluated {
        tasks.withType(JavaCompile) {
            options.compilerArgs.add("-Xbootclasspath/p:${rootDir}/libs/framework.jar")
        }
    }
}

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages