PatilShreyas / bytemask

Android Gradle Plugin that masks secret strings for the app in the source code making it difficult to extract from reverse engineering.
https://patilshreyas.github.io/bytemask/
Apache License 2.0
244 stars 8 forks source link

Consider using KotlinPoet for code generation #7

Open StefMa opened 5 months ago

StefMa commented 5 months ago

I think writing text as a file isn't the safest solution. KotlinPoet would help you by generation correct kotlin code.

PatilShreyas commented 5 months ago

@StefMa initially I also thought of using it only, but this code generation was very simple and straightforward. So I skipped using it for initial try out.