“Minimal” source files to create Android app using Eclipse + ADT

前端 未结 3 1381
爱一瞬间的悲伤
爱一瞬间的悲伤 2021-01-02 13:48

I am trying to understand the anatomy of a MINIMAL Android application, using Eclipse + ADT (Android Development Toolkit).

Please can you advise what is the MINIMAL

3条回答
  •  遥遥无期
    2021-01-02 13:55

    A minimal build.xml which can build and install dtmilano's code:

    
    
        
        
            
        
        
        
    
    

    then:

    ant clean
    ant debug
    ant install
    

    Tested on Android 23, Ubuntu 15.10. Just make sure that adb install works before running this.

    On a repo to make getting the code easier.

提交回复
热议问题