Details about withAppData

  • Released
  • Updated
  • iOS Version
  • Age Rating
  • Size
  • Devices
  • Languages

Developer of withAppData

🙌0
Ratings
🗣❌ unsupported
Your locale
🖼️Download
Icons↘︎

Version History of withAppData

2.8

January 23, 2024

withAppData [ver 2.8] modifyied layout of AdMob modified the AdMob layout due to the warning below. [message] encouraging accidental clicks:layout best regards, abc3.me by abc3.me

More

2.7

June 21, 2022

withAppData [version 2.7] Update iOS version. change 8.0 to 9.0. Status bar for iOS15 internal processing of the program has been changed. Added IDFA confirmation dialog display processing The confirmation dialog is displayed only once due to the AdMob tracking process. If you want to track activity or change permissions in the "Privacy" settings It seems that you can make changes by selecting Settings> Privacy> Tracking. IDFA can set permission changes for each app. please choose "Allow" button or "Ask App Note toTrack" button. (1) "Allow" button: Show recommended ads. (2) "Ask App Note toTrack" button: Display ads that users are not interested in. * In any case, the advertisement will be displayed. [Notes to development users] Getting the height of the iOS status bar (iOS 15 or later) [Code implementation example] ※Objective-C CGFloat height = 0.0f; NSSet *scenes = [[UIApplication sharedApplication] connectedScenes]; for (UIScene *scene in scenes) { if ([scene isKindOfClass:[UIWindowScene class]]) { UIWindowScene *windowScene = (UIWindowScene*)scene; height = windowScene.statusBarManager.statusBarFrame.size.height; break; } } IDFA code implementation About the implementation of IDFA (tracking related) Add two frameworks. (1)AdSupport.framework (2)AppTrackingTransparency.framework Until now, I think it was implemented at the following timing. (1)AppDelegate (2)SceneDelegate (3)viewDidLoad However, it seems that it became a regular procedure to execute IDFA after implementing the advertisement. From iOS15, the IDFA message dialog will not be displayed if it is implemented in (1) to (3) above. Therefore, it is necessary to implement it in the place where the value of "UIApplicationStateActive" is true. (example) if (UIApplication.sharedApplication.applicationState == UIApplicationStateActive) { NSLog(@"UIApplicationStateActive is true."); } For example, instead of the viewDidAppear event described below It seems that some developers implement it when the button is tapped. [Code implementation example] ※Objective-C -(void)viewDidAppear:(BOOL)animated { [super viewDidAppear:animated]; [self requestIDFA]; } -(void)requestIDFA { ASIdentifierManager *identifierManager = [ASIdentifierManager sharedManager]; if (@available(iOS 14, *)) { // Processing iOS14 or later [ATTrackingManager requestTrackingAuthorizationWithCompletionHandler:^(ATTrackingManagerAuthorizationStatus status) { //How to start getting ads [GADMobileAds.sharedInstance startWithCompletionHandler:^(GADInitializationStatus * _Nonnull status) { //Please reload the ad here, etc. }]; if (status == ATTrackingManagerAuthorizationStatusAuthorized || status == ATTrackingManagerAuthorizationStatusNotDetermined) { // User has not selected "Do not track" in privacy settings (opt-in) // Code to do something with the obtained IDFA } else if (status == ATTrackingManagerAuthorizationStatusDenied) { // User selects "Do not track" in privacy settings (opt out) // Code if IDFA could not be obtained } else { // Something else } }]; } else { // Processing before iOS13 //ASIdentifierManager *identifierManager = [ASIdentifierManager sharedManager]; if ([identifierManager isAdvertisingTrackingEnabled]) { //NSString *idfa = identifierManager.advertisingIdentifier.UUIDString; //NSLog(@"idfa:%@",idfa); //Code to do something with the obtained IDFA } else { //NSLog(@"failure"); //Code if IDFA could not be obtained } } }

More

2.6

March 30, 2021

withAppData [ver 2.6] Update AdMob Updated AdMob to Google Mobile Ads SDK. ※need minimum requirements version GoogleMobileAdsSdkiOS-7.64.0. change control to WKWebView the part that used UIWebView has been changed to WKWebView for security measures. this app hard to see in dark mode. for this reason, made it look like light mode. best regards, abc3.me by abc3.me

More

2.5

April 7, 2018

withAppData version 2.5 [new function add] search condition list function add if tap list button (star mark), display search condition list screen. choose button reflect saved condition chose data from list to search condtion screen. save button save setting condition data on search condition screen. delete button delete from choose data from the list. [about search funciton] search folder or file in this application folder. extention search funtion only file.(not search folder) 1.search folder or file it need to checkbox on folder or file label. include string display list that include string of folder or file name. with begining string display list that begining string of folder or file name. with ending string display list that ending string of folder or file name. with equal string display list that equal to string of folder or file name. not include string display list that not include string of folder or file name. ※if combination folder or file search option and extention search option, display result of both matching folder or file list. 2.extention search it need to check checkbox on extention label. (1)choose extention it need to check extention checkbox. if tap under direction triangle mark button, open extention list screen. choose any extention. display choose extention list. (2)input extention search same input extention of file. ※extention is file only. ※if combination folder or file search option and extention search option, display result of both matching folder or file list. 3.search parent folder choose folder and search result list. 4.folder or file date information set create date and update date from calendar screen and search result list. search after choose start date. search after choose end date. if set both start date and end date, range date of folder and file search result list. 5.file size input minimum and maximum size and search list. search above min file size. search above max file size. if set both size, search range of min and max size list. 6.kind of search it is able to search file only or folder only. best regards, abc3.me by abc3.me

More

2.4

April 2, 2018

withAppData version 2.4 ad repair. [about search funciton] search folder or file in this application folder. extention search funtion only file.(not search folder) 1.search folder or file it need to checkbox on folder or file label. include string display list that include string of folder or file name. with begining string display list that begining string of folder or file name. with ending string display list that ending string of folder or file name. with equal string display list that equal to string of folder or file name. not include string display list that not include string of folder or file name. ※if combination folder or file search option and extention search option, display result of both matching folder or file list. 2.extention search it need to check checkbox on extention label. (1)choose extention it need to check extention checkbox. if tap under direction triangle mark button, open extention list screen. choose any extention. display choose extention list. (2)input extention search same input extention of file. ※extention is file only. ※if combination folder or file search option and extention search option, display result of both matching folder or file list. 3.search parent folder choose folder and search result list. 4.folder or file date information set create date and update date from calendar screen and search result list. search after choose start date. search after choose end date. if set both start date and end date, range date of folder and file search result list. 5.file size input minimum and maximum size and search list. search above min file size. search above max file size. if set both size, search range of min and max size list. 6.kind of search it is able to search file only or folder only. best regards, abc3.me by abc3.me

More

2.3

March 30, 2018

withAppData version 2.2 [new function add] search function add. search folder or file in this application folder. extention search funtion only file.(not search folder) 1.search folder or file it need to checkbox on folder or file label. include string display list that include string of folder or file name. with begining string display list that begining string of folder or file name. with ending string display list that ending string of folder or file name. with equal string display list that equal to string of folder or file name. not include string display list that not include string of folder or file name. ※if combination folder or file search option and extention search option, display result of both matching folder or file list. 2.extention search it need to check checkbox on extention label. (1)choose extention it need to check extention checkbox. if tap under direction triangle mark button, open extention list screen. choose any extention. display choose extention list. (2)input extention search same input extention of file. ※extention is file only. ※if combination folder or file search option and extention search option, display result of both matching folder or file list. 3.search parent folder choose folder and search result list. 4.folder or file date information set create date and update date from calendar screen and search result list. search after choose start date. search after choose end date. if set both start date and end date, range date of folder and file search result list. 5.file size input minimum and maximum size and search list. search above min file size. search above max file size. if set both size, search range of min and max size list. 6.kind of search it is able to search file only or folder only. best regards, abc3.me by abc3.me

More

2.2

March 26, 2018

withAppData version 2.2 [new function add] search function add. search folder or file in this application folder. extention search funtion only file.(not search folder) 1.search folder or file it need to checkbox on folder or file label. include string display list that include string of folder or file name. with begining string display list that begining string of folder or file name. with ending string display list that ending string of folder or file name. with equal string display list that equal to string of folder or file name. not include string display list that not include string of folder or file name. ※if combination folder or file search option and extention search option, display result of both matching folder or file list. 2.extention search it need to check checkbox on extention label. (1)choose extention it need to check extention checkbox. if tap under direction triangle mark button, open extention list screen. choose any extention. display choose extention list. (2)input extention search same input extention of file. ※extention is file only. ※if combination folder or file search option and extention search option, display result of both matching folder or file list. best regards, abc3.me by abc3.me

More

2.1

March 16, 2018

withAppData version 2.1 move and copy disposal of Dropbox function add. ※choose file only [step] 1. move (1)tap move button. (2)change button name move to select.choose select button. (3)tap select button. (4)change button name select to paste.choose want to move directory. (5)if tap paste button, show confirmation dialog box.if tap OK button, execute move disposal. 2. copy (1)tap copy button. (2)change button name copy to select.choose select button. (3)tap select button. (4)change button name select to paste.choose want to copy directory. (5)if tap paste button, show confirmation dialog box.if tap OK button, execute copy disposal. best regards, abc3.me by abc3.me

More

2.0

March 9, 2018

withAppData version 2.0 The function of background processing was added. Added volume control and play and pause functions. best regards, abc3.me by abc3.me

More

1.9

March 3, 2018

withAppData version 1.9 add help of ver 1.8 [summary] (1)create new folder create new folder. (2)rename rename choose folder or file. (3)remove remove choose folder or file. ※upload and download file only. ※it need to login dropbox system. best regards, abc3.me by abc3.me

More

Price History of withAppData

Description of withAppData

withAppData [withAppData summary] Dropbox it manage folders and files with Dropbox system. download and upload files using famous cloud system of Dropbox. [current function] (1) file download(file only) (2) file upload(file only) (3) move another folder ※move folder to subfolder or parent folder. (4)create new folder (5)rename (6)remove (7)move(file only) (8)copy(file only) please login certification. folder manage folder manage it manage include files.(file included from Dropbox and iTunes application) [main funtion] (1) create new folder create new folder selected directory. (2) rename rename folder and files (3) remove remove selected folders and files.it is able to multi select. (4) move move folders and files. if exists same files,display confirm messagebox. if permitted overwrite files,execute move disposal. it is able to multi select. (5) copy copy folders and files. if exists same file name,display confirm messagebox. if permitted copy files,execute copy disposal copy new file name with add number ex.) [before] xxx.txt [after] xxx (1).txt (5) file view view selected file. [current function] text file(txt/log) CSV file(csv) PDF(pdf) Excel file(xls/xlsx) Power point file(ppt/pptx) WORD file(doc) HTML file(html/htm/webarchive) image file(png/jpg/gif/bmp) movie file(mp4/mov) prepare siwtch change vertical layout to horizontal for layout button. prepare movie screen for caputre button. zip file(zip) ※prepare textbox for input password with zip file. music file(mp3/wav/m4a) using iTunes connect iPhone with computer.import or export selected files using iTunes application. [simple step] (1) connect certification with iPhone and computer connect iPhone and your computer using USB. (2) select device select DEVICE on the iTunes application screen. (3) 'App' select select 'App' on the iTunes application screen. (4) add file or save file if scroll down App area,find application list that is able to using iTunes application. select applicaiton in the list and click add button or save button. these button function has import or export files. data cooperation data cooperation with developed apps of abc3.me. after report impossible data cooperration apps. [data cooperation Application] (1)AccountBook (2)abc3.me02(water and lighting and heating expenses) Web browser(download) if link tap on web page, display dialog. (1)open URL link (2)download from URL link (3)copy URL link rating 17+: Since this app allows unfiltered access to the internet. ※You can access the web freely. select option button and OK button. ※favor list screen 6. search folder and file folder or file search option and extention search option, display result of both matching folder or file list. best regards, abc3.me by abc3.me
Show less

withAppData: FAQ

Does withAppData work on iPads?

Yes, withAppData supports iPad devices.

Who created the app?

Kiyotaka Hori developed the withAppData app.

What is the minimum supported iOS version for withAppData?

The minimum required iOS version for the app to work is 9.0 or higher.

What is the current app rating of withAppData?

withAppData has not received any user ratings yet.

What’s the genre of the withAppData app?

The App Genre Of Withappdata Is Productivity.

What’s the current version of the withAppData app?

The current version of withAppData is 2.8.

What is the update date for withAppData?

The latest withAppData update came out on October 1, 2024.

When was the app initially released?

withAppData launched on February 6, 2023.

What is the content advisory rating of withAppData?

Suitable for adults only, contains graphic violence, nudity, or sexual content.

What languages does the withAppData app support?

The withAppData app is now available in Japanese.

Can I find withAppData within Apple Arcade's selection of games?

Sorry, withAppData is not available on Apple Arcade.

Are in-app purchases available within withAppData?

Sorry, in-app purchases are not accessible within withAppData.

Is withAppData optimized for use with Apple Vision Pro?

Unfortunately, withAppData is not optimized for use with Apple Vision Pro.

Are there commercial ads in withAppData?

Yes, there are commercial ads in withAppData.

Screenshots of withAppData

withAppData screenshot #1 for iPhone
withAppData screenshot #2 for iPhone
withAppData screenshot #3 for iPhone
withAppData screenshot #4 for iPhone
withAppData screenshot #5 for iPhone
withAppData screenshot #6 for iPhone
withAppData screenshot #7 for iPhone
withAppData screenshot #8 for iPhone
iphone
ipad

Alternatives to withAppData

More Applications by Kiyotaka Hori

Reviews of withAppData

Leave a Review withAppData
  • 🤔

    I have a feeling in me, that this does or did something cool. Call it a hunch 🤷‍♂️ but I can usually tell when an app is one of those with rare or 'speciial' functions that you don't see everyday.

    For the life of me I'm not sure if I'm missing something about app, but the only parts in english are poorly translated. Hard to even make educated guessing on results, cause it's not immediately obvious to me. After tinkering around more, it remains a mystery (or does it 🤔).
    Show less