Compile android project to apk without eclipse

前端 未结 2 552
被撕碎了的回忆
被撕碎了的回忆 2021-01-03 07:38

What I have done is I have taken the class-files from my eclipse project and run them trough an optimizer/obfuscator. So I now have optimized class-files that I want to get

2条回答
  •  情话喂你
    2021-01-03 08:32

    Here's an example:

    android create project \
    --target 1 \
    --name MyAndroidApp \
    --path ./MyAndroidAppProject \
    --activity MyAndroidAppActivity \
    --package com.example.myandroid
    

提交回复
热议问题