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
210 stars 4 forks source link

Consider using KotlinPoet for code generation #7

Open StefMa opened 2 weeks ago

StefMa commented 2 weeks ago

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

PatilShreyas commented 2 weeks 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.