tencent/tinker

Tinker is a hot-fix solution library for Android, it supports dex, library and resources update without reinstall apk.

View on GitHub ↗Jump to charts ↓Open shareable report

Summary Information

Updated 28 minutes ago
Added to GitGenius on September 3rd, 2026
Created on September 6th, 2016
Open Issues & Pull Requests: 571 (+0)
GitHub issues: Enabled
Number of forks: 3,346
Total Stargazers: 17,646 (+0)
Total Subscribers: 687 (+0)

Repository Insights (GitGenius)

Median issue/PR response: 41.2 hours
Mean response time: 79.8 days
90th percentile: 330.1 days
Tracked items: 41

Most active contributors

Sign in to see contributor activity.

Related repositories by overlapping contributors

How this project is maintained

Around half of the issues opened in the past year never receive a reply. 98% of open issues come from outside the core team, so the backlog reflects real-world use rather than internal planning. Only 0% of issues opened in the past year have been closed.

Charts & Analytics

Fetching additional details & charts...

Issue Activity (beta)

Open issues: 52
New in 7 days: 0
Closed in 7 days: 0
Avg open age: 881 days
Stale 30+ days: 52
Stale 90+ days: 51

Recent activity

Opened in 7 days: 0
Closed in 7 days: 0
Comments in 7 days: 0
Events in 7 days: 0

Top labels

  • bug (1)
  • notice (1)
  • undetermined (1)

Most active issues this week

No issue events were indexed in the last 7 days.

Detailed Description

Tinker is a hot-fix solution library for Android that enables dex, library, and resource updates without requiring app reinstallation.

Tinker addresses the problem of deploying bug fixes and updates to production Android applications by allowing patches to be applied at runtime. The library works by generating patch files that contain only the changes needed to fix issues, then loading these patches into the running application without requiring users to download and install a new APK. The approach involves integrating a Gradle plugin into the build process, modifying the Application class to extend TinkerApplication, and using the library's patching mechanism to load and apply updates dynamically.

Teams should adopt Tinker when they need rapid bug-fix deployment for Android applications and want to avoid the friction of requiring users to reinstall. It suits projects where minimizing user friction during critical updates is a priority. The library also provides support for the Ark compiler, allowing patches to be compiled and packaged in APK format for deployment on Ark-compiled applications. Tinker handles ProGuard configuration automatically and generates multiDex keep files, reducing integration complexity.

The project maintains a substantial base of real-world adopters, as evidenced by the fact that nearly all open issues are raised by external users rather than the core team. Maintainers typically respond to new issues and pull requests within a few days. Work in the issue tracker is dominated by bug reports, undetermined issues, and notices, reflecting an active user community reporting and discussing problems encountered during deployment.