JimKueneman
Members-
Content Count
8 -
Joined
-
Last visited
Community Reputation
1 NeutralRecent Profile Visitors
The recent visitors block is disabled and is not being shown to other users.
-
Next Roadblock-provisioning for iOS
JimKueneman replied to JimKueneman's topic in Delphi IDE and APIs
Ok I have no idea why this mattered... I moved to the Android problem and fixed that and now it is reading the provisioning files... It says the file is not right to load on my phone, but at least it is recognizing the files. https://dannywind.nl/delphi/android-sdk-for-delphi-11-2-alexandria/ -
It has been a long time since I have created an iOS app. I created a certificate on my new machine with Keychain Access Went to the Apple Developer site and created a new Certificate and uploaded the CertificateSigningRequest.certSigningRequest file selecting the Apple Development choice. Downloaded that file and double clicked it. Looked in the Keychain and I now have a Apple Development: Jim Kueneman (42729xxxxx) certificate that says is valid. Created a new App ID for the app. Selected new App ID and typed in this for the bundle ID net.mustangpeak.LccThrottleApp Created a new device for my iPhone 12 mini using it UUID Created a new profile using the AppID and Device I just created and downloaded it. I double clicked it and it was converted to a file that was put in the ~/Library/MobileDevice/Provisioning Files/ folder. If I look at the contents of that file it has the App ID and Phone UUID in it. I open Delphi and my application. In my project options and go to Project Options -> Application -> Version Info -> CFBundleIdentifier I have it set to net.mustangpeak.$(ModuleName). My application name is LccThrottleApp so it resolves to net.mustangpeak.LccThrottleApp. I plug in my iPhone and see it in the IDE in toolbar. Now I go to Project Options - > Deployment -> Provisioning and I see "No provisioning file found for the selected build configuration and the selected device" What else is the IDE looking for that I missed? Jim
-
Thank you that kicked me in the right direction... order matters on XCode and Command Line Tools... https://stackoverflow.com/questions/17980759/xcode-select-active-developer-directory-error Jim
-
Delphi 11.2 Patch 1, just bought a new M1 and installed VMWare and Windows 11 Arm. Installed XCode 14.2 and the command line tools. PasServer is working correct but it can't find any of the OSX or iOS SDKs. Anyone else experimenting with running on the M1 and have this problem? Thanks, Jim
-
OMG that is embarrassing... thank you...
-
When I access TListview.Items when the search bar contains a string the property is only returning items that are presented in the LV during that time. I have data stored in the ObjectTag that is being updating in the background so when it comes in I need store it in these object but during a search I can't access them through TListview.Items I am not seeing a property that give me access to the unfiltered list of items stored in the list view. How to I access a full list of TListview Items while the control is in search mode? Thanks, JIm
-
That is it. Thank you so much...
-
Hi, Delphi 11.2 Patch 1, FireMonkey app running in Windows 11 in a virtual Machine on OSX. Does not work compiled into Linux or OSX either. procedure TForm1.Button4Click(Sender: TObject); var L: TLabel; begin Label1.TextSettings.Font.Style := [TFontStyle.fsBold]; // Desiger Dropped Label is Bold L := TLabel.Create(Self); L.Text := 'Testing'; L.Align := TAlignLayout.Bottom; L.TextSettings.Font.Style := [TFontStyle.fsBold]; // Dynamically created Label is not Bold L.Parent := Layout1; end; Why won't the dynamically added Label respond to changing TextSettings.Font.Style? Jim