j2objc-contrib / j2objc-gradle

This plugin is no longer actively maintained. J2ObjC Gradle Plugin: enables Java source to be part of an iOS application's build so you can write an app's non-UI code (such as application logic and data models) in Java, which is then shared by Android apps (natively Java) and iOS apps (using J2ObjC), all as part of your usual Android Gradle build.
https://github.com/j2objc-contrib/j2objc-gradle
Apache License 2.0
139 stars 43 forks source link

Flags to configure include directories, libraries, prefix.properties, etc... #85

Open advayDev1 opened 9 years ago

advayDev1 commented 9 years ago

As we use gradle objc compilation and cocoa pods, we should not have the user tell us multiple times common attributes like include directories and linked libraries by overriding command lines as flags. Instead provide separate flags for each of these, and then convert those to the command-line as appropriate for each tool in the chain.

brunobowden commented 9 years ago

prefix.properties is a bad example of this. I wrote the code to parse the command line and find the file. Much better done as a distinctive set of controls.

On Tue, Jun 2, 2015 at 2:27 PM Advay Mengle notifications@github.com wrote:

As we use gradle objc compilation and cocoa pods, we should not have the user tell us multiple times common attributes like include directories and linked libraries by overriding command lines as flags. Instead provide separate flags for each of these, and then convert those the command-line as appropriate for each tool in the chain.

— Reply to this email directly or view it on GitHub https://github.com/brunobowden/j2objc-gradle/issues/85.

advayDev1 commented 9 years ago

so i think i got all the right inputfiles in #110 except prefix.properties, can you capture that one here?