This package if build for flutter to get install referer, such as channel info, install referer, downlaod time, and any other custom info.
but you need extra steps and combain this package to finish the job. I will put the steps below.
- this package only work in android *
install this package in you project, and you can get your referer data as Map in this way:
Map<String,String> refererInfo = await FlutterInstallReferer.installReferer;
as you see, the data is a Map.
you can use command methods to build your project to apk file. because we will add extra data to the apk file later. such as :
flutter build apk --split-per-abi
now, we need a command line tool walle-cli
, you can click here to see more info about this tool
frist you need downlaod this tool in here
and then the basic command is :
java -jar walle-cli-all.jar put -c sky -e buildTime=20200620,info=hello /Users/Downloads/app.apk /Users/xxx/Downloads/newAPKFilePath.apk
- -c : channel, you can use as referer.
- -e : extra data, you can add any other data with
key=value
pair. /Users/Downloads/app.apk
:the apk file path you build last step./Users/xxx/Downloads/newAPKFilePath.apk
new apk file path.
this command will complete super fast, actually you can repack the apk file to over 100 channels in milliseconds
for test you can run adb install /Users/xxx/Downloads/newAPKFilePath.apk
and then you can get the Map data you need.
you can get something like this.