GithubHelp home page GithubHelp logo

Customise plist about gradle-macappbundle HOT 3 CLOSED

crotwell avatar crotwell commented on August 24, 2024
Customise plist

from gradle-macappbundle.

Comments (3)

GoogleCodeExporter avatar GoogleCodeExporter commented on August 24, 2024
Do you want to change values already in the plist or just add additional ones? 
I can probably accommodate either, but can you be more specific about which 
parts of the plist you want to change? 

If there are additional things that would be commonly useful, I could certainly 
add them to the configuration.

If you want to modify the plist file you can do that with the existing version 
by adding a "doLast" to the generatePlist task.  Something like:

generatePlist.doLast {
   def plistFile = project.macAppBundle.getPlistFileForProject(project)
   // do something to pListFile like
   plistFile.append("   Howdy   ")
}

Original comment by [email protected] on 7 Sep 2012 at 1:22

from gradle-macappbundle.

GoogleCodeExporter avatar GoogleCodeExporter commented on August 24, 2024
Thanks for that. What we wanted to do was add a CFBundle section to identify 
documents for our application. For example:

<array>
      <dict>
        <key>CFBundleTypeName</key>
        <string>onCourse server data file</string>
        <key>CFBundleTypeRole</key>
        <string>Editor</string>
        <key>CFBundleTypeIconFile</key>
        <string>onCourseDocument.icns</string>
        <key>CFBundleTypeExtensions</key>
        <array>
          <string>iocdata</string>
        </array>
        <key>CFBundleTypeOSTypes</key>
        <array>
          <string>ishS</string>
        </array>
        <key>LSTypeIsPackage</key>
        <string>true</string>
      </dict>
    </array>


Original comment by [email protected] on 10 Sep 2012 at 12:11

from gradle-macappbundle.

GoogleCodeExporter avatar GoogleCodeExporter commented on August 24, 2024
I have pushed changes to allow an "extras" in the plugin extension that I think 
will allow you to do this. An example is below. Note it is up to you to make 
sure the xml is correct, no checking is done by the plugin.

I will release a new version shortly.

macAppBundle {
    mainClassName = "edu.example.myproj.Start"
    dmgName = "MyProj-${project.version}"
    extras = """
<key>OtherStuff</key>
<array>
      <dict>
        <key>CFBundleTypeName</key>
        <string>onCourse server data file</string>
        <key>CFBundleTypeRole</key>
        <string>Editor</string>
        <key>CFBundleTypeIconFile</key>
        <string>onCourseDocument.icns</string>
        <key>CFBundleTypeExtensions</key>
        <array>
          <string>iocdata</string>
        </array>
        <key>CFBundleTypeOSTypes</key>
        <array>
          <string>ishS</string>
        </array>
        <key>LSTypeIsPackage</key>
        <string>true</string>
      </dict>
    </array>
 """
}

Original comment by [email protected] on 10 Sep 2012 at 3:37

  • Changed state: Fixed

from gradle-macappbundle.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    πŸ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. πŸ“ŠπŸ“ˆπŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❀️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.