@@ -19,7 +19,7 @@ and execute:
1919Paste the results below, replacing existing contents.
2020-->
2121- [ Start here for debugging (aka it's not working; aka don't panic)] ( #start-here-for-debugging-aka-its-not-working-aka-dont-panic )
22- - [ How do I develop with tasde ?] ( #how-do-i-develop-with-tasde )
22+ - [ How do I develop with Xcode ?] ( #how-do-i-develop-with-xcode )
2323- [ How can I speed up my build?] ( #how-can-i-speed-up-my-build )
2424- [ What libraries are linked by default?] ( #what-libraries-are-linked-by-default )
2525- [ How do I setup dependencies with J2ObjC?] ( #how-do-i-setup-dependencies-with-j2objc )
@@ -31,7 +31,7 @@ Paste the results below, replacing existing contents.
3131- [ Why is my clean build failing?] ( #why-is-my-clean-build-failing )
3232- [ How do I include Java files from additional source directories?] ( #how-do-i-include-java-files-from-additional-source-directories )
3333- [ How do I develop with Swift?] ( #how-do-i-develop-with-swift )
34- - [ How do I solve 'File not found' import error in tasde ?] ( #how-do-i-solve-file-not-found-import-error-in-tasde )
34+ - [ How do I solve 'File not found' import error in Xcode ?] ( #how-do-i-solve-file-not-found-import-error-in-xcode )
3535- [ How do I work with Package Prefixes?] ( #how-do-i-work-with-package-prefixes )
3636- [ How do I enable ARC for my translated Objective-C classes?] ( #how-do-i-enable-arc-for-my-translated-objective-c-classes )
3737- [ How do I call finalConfigure()?] ( #how-do-i-call-finalconfigure )
@@ -49,7 +49,7 @@ Paste the results below, replacing existing contents.
4949
5050Some common misconfigurations can cause numerous Gradle errors.
5151
52- 1 . First make sure you have a supported version of j2objc and tasde
52+ 1 . First make sure you have a supported version of j2objc and Xcode
5353(see [ README.md] ( README.md ) for our current supported versions) installed locally,
5454and that your J2OBJC_HOME property is set correctly to the distribution directory
5555of j2objc. This _ is not_ the source repository root for j2objc. The distribution
@@ -80,7 +80,8 @@ Now try building again.
8080### How do I develop with Xcode?
8181
8282The J2ObjC Gradle Plugin configures your Xcode project with [ CocoaPods] ( https://cocoapods.org/ ) .
83- To take advantage of this, specify an ` xcodeProjectDir ` in your ` j2objcConfig ` per the Quick Start Guide.
83+ To take advantage of this, specify the directory that contains ` PROJECT.xcodeproj ` as
84+ the ` xcodeProjectDir ` in your ` j2objcConfig ` per the [ Quick Start Guide] ( README.md#quick-start-guide ) .
8485
8586After running ` j2objcXcode ` , open the ` .xcworkspace ` file in Xcode. If the ` .xcodeproj ` file
8687is opened in Xcode then CocoaPods will fail. This will appear as an Xcode build time error:
@@ -344,14 +345,14 @@ j2objcConfig {
344345// File: resources/prefixes.properties
345346// Storing at this location allows Class.forName(javaName) to work for mapped class.
346347com.example.dir: Ced
347- com.example.dir.subdir: Ceds
348+ com.example.dir.subdir: Ced
348349```
349350
350- As of J2ObjC verion 0.9.8 you can also use wildcards in your prefixes file.
351- This will map packages such as com.example.dirandcom .example.dir.subdir both to Ceds .
351+ You can also use wildcards in your prefixes file.
352+ This will map packages such as com.example.dir and com .example.dir.subdir both to Ced .
352353
353354```
354- com.example.dir.*: Ceds
355+ com.example.dir.*: Ced
355356```
356357
357358### How do I enable ARC for my translated Objective-C classes?
@@ -480,7 +481,7 @@ For more details:
480481### How do I develop on Windows or Linux?
481482
482483Windows and Linux support is limited to the ` j2objcCycleFinder ` and ` j2objcTranslate ` tasks.
483- Mac OS X is required for the j2objcAssemble, j2objcTest and j2objctasde tasks
484+ Mac OS X is required for the j2objcAssemble, j2objcTest and j2objcXcode tasks
484485(see [ task descriptions] ( README.md#tasks ) ) This matches the
485486[ J2ObjC Requirements] ( http://j2objc.org/#requirements ) .
486487
0 commit comments