Skip to content

android开发常用库|android common library

License

Notifications You must be signed in to change notification settings

Party233/androidlib

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

统一接入源

maven { url 'https://jitpack.io' }

最新版本

接入RSharedPreferences

  • 解决MODE_WORLD_WRITEABLE no longer supported问题
implementation 'com.github.Humenger.androidlib:RSharedPreferences:{latest_version}'

使用RSharedPreferences

RSharedPreferences.getSharedPreferences(context,name,mode);
RSharedPreferences.getSharedPreferences(getPreferenceManager());

包裹方式使用

RSharedPreferences.sharedPreferencesBypass(getContext(), (RBypassCallback<Void>) () -> {
                setPreferencesFromResource(R.xml.root_preferences,rootKey);
                return null;
            });
//带回调
SharedPreferences preferences= RSharedPreferences.sharedPreferencesBypass(getContext(), (RBypassCallback<SharedPreferences>) () -> 
                    getPreferenceManager().getSharedPreferences());

接入XReflectHelpers

  • 移植Xposed的反射库,可以在任何APP中使用,就相当于一个普通的反射库
implementation 'com.github.Humenger.androidlib:XReflectHelpers:{latest_version}'

使用XReflectHelpers

XReflectHelpers.XXXX();

api列表

XReflectHelpers

接入HSystemHelpers

  • 一些系统辅助类
 implementation 'com.github.Humenger.androidlib:HSystemHelpers:{latest_version}'

使用HSystemHelpers

//根据class名字查找其对应的系统jar所在路径
HSystemHelpers.findSystemJarPathWithClassName("android.app.Activity");
//获取当前进程名,目测支持android4-最新系统版本
HSystemHelpers.getProcessName(context);
//获取已加载的so库列表
HSystemHelpers.getLoadSoLibrary(onlyApp);

接入Httposed(开发中)

  • 以Xposed思维设计Http拦截框架
 implementation 'com.github.Humenger.androidlib:Httposed:{latest_version}'

接入GithubProxyHelpers

  • 处理github国内无法访问问题,可以不用配置代理,快捷访问github
 implementation 'com.github.Humenger.androidlib:GithubProxyHelpers:{latest_version}'

使用GithubProxyHelpers

//初始化 可以放在Application.onCreate()函数里  
GithubProxyHelpers.init(context);
GithubProxyHelpers.getProxyUrl("https://raw.githubusercontent.com/xxxx")

接入MiniBrowser

  • 让App内置一个迷你浏览器
 implementation 'com.github.Humenger.androidlib:MiniBrowser:{latest_version}'

使用MiniBrowser

    <com.github.Humenger.mininrowser.MiniBrowser
        android:id="@+id/mini_browser"
        android:layout_width="match_parent"
        android:layout_height="match_parent" />
MiniBrowser browser = findViewById(R.id.mini_browser);
browser.loadUrl("https://baidu.com/");

接入multi-level-listview

  • 多级菜单
 implementation 'com.github.Humenger.androidlib:multi-level-listview:{latest_version}'

使用multi-level-listview

接入LogLite

  • 简单Log工具
 implementation 'com.github.Humenger.androidlib:LogLite:{latest_version}'

使用LogLite

LogLite.tag("xx").i(format,args...);

接入MultiDexHook

  • Xposed下多dex Hook工具
implementation 'com.github.Humenger.androidlib:MultiDexHook:{latest_version}'

使用MultiDexHook

//初始化
MultiDexHook.getInstance().init();
//注册类加载器监听器,会回调所有拦截到的classLoader
        MultiDexHook.getInstance().register((classLoader)->{});

接入FrpHelper

  • 一个Android端Frp封装库
implementation 'com.github.Humenger.androidlib:FrpHelper:{latest_version}'

使用FrpHelper

FrpHelper.with(VERSION_0_42_0).startClientFormAssetsConfig(context,"frpc.ini");

接入AndroidHideApi

  • 方便调用系统隐藏api
compileOnly 'com.github.Humenger.androidlib:FrpHelper:{latest_version}'

注意:这里应使用compileOnly(仅用于通过编译)方式导入

使用AndroidHideApi

IBinder binder=ServiceManager.getService(NETWORKMANAGEMENT_SERVICE);

致谢 Thanks

IntelliJ IDEA logo

About

android开发常用库|android common library

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • Java 68.9%
  • C 22.7%
  • Objective-C 7.5%
  • Other 0.9%