withAppData

withAppData


withAppData


Free

2.8for iPhone, iPad and more
Kiyotaka Hori
Developer
28.1 MB
Size
Jan 23, 2024
Update Date
Productivity
Category
17+
Age Rating
Age Rating
4+
Apps in this category do not contain restricted content.
9+
Apps in this category may contain mild or occasional cartoon, fantasy or real-life violence, as well as occasional or mild adult, sexually suggestive or horrifying content and may not be suitable for children under 9 years of age.
12+
Apps in this category may contain occasional mild indecent language, frequent or intense cartoon or real-life violence, minor or occasional adult or sexually suggestive material, and simulated gambling, and may be for children under 12 years of age.
17+
You must be at least 17 years old to access this App.
Apps in this category may contain frequent and intense offensive language; Frequent and intense cartoon, fantasy or realistic violence: frequent and intense adult, scary and sexually suggestive subjects: as well as sexual content, nudity, tobacco, alcohol and drugs, may not be suitable for children under 17 years of age.
withAppData Screenshots
withAppData posterwithAppData posterwithAppData posterwithAppData posterwithAppData poster
withAppData posterwithAppData posterwithAppData posterwithAppData posterwithAppData poster

About 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 More

What's New in the Latest Version 2.8

Last updated on Jan 23, 2024
Old Versions
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
Show More
Version History
2.8
Jan 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
2.7
Jun 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
}
}
}
2.6
Mar 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
2.5
Apr 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
2.4
Apr 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
2.3
Mar 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
2.2
Mar 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
2.1
Mar 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
2.0
Mar 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
1.9
Mar 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
1.8
Mar 2, 2018
withAppData
version 1.8

[new function add]
add function of dropbox:

(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.
※this function help add later version.

best regards, abc3.me
by abc3.me
1.7
Feb 25, 2018
withAppData
version 1.7

help add (ver 1.6 function : music player screen)

main contents:
play music function

extension
mp3
wav
m4a

menu screen > folder manage screen
choose file view tab.
choose music file.

open music screen.
display music list in your choose folder.
choose music file is default start.
if change start music, tap up arrow button or down arrow button.
if not play music,tap table cell.
cell will be change skyblue to white.
skyblue:play music
white:not play music

if tap play button, play music.
if tap X button,hidden table list in the screen.

if image exists in music file,
display music image at the screen.

screen function:
(1)image
display music image if has music file.
(2)passed play time
display passed play time left position of play slider.
(3)play slider
if change slider position, change play position and play music.
(4)remainder time
display play reimainder time of choose music file.
(5)title
display music info string right to left.
(6)volume
default volume is 5.
it tap back button,
save current volume size in this application data.
if next open this screen,
load previous volume is used.
(7)first
choose music top of list and play.
(8)before
play previous music file and play.
※use music file of choose list.
(9)stop
stop play music.
(10)play
play music.
if tap change function.
ex.)
pause > play > pause
(11)next
play next music.
※use music file of choose list.
(12)last
choose music last of list and play.
(13)back button
back to the previous screen.
(14)repeat
if tap change function.
ex.)
non-repeat
repeat(ALL)
repeat one(once time)
(15)random
if tap change function.
ex.)
non-random
random
(16)lsit
display play list.

best regards, abc3.me
by abc3.me
1.6
Feb 22, 2018
withAppData
version 1.6

[New function add]
play music function add

extension
mp3
wav
m4a

menu screen > folder manage screen
choose file view tab.
choose music file.

open music screen.
display music list in your choose folder.
choose music file is default start.
if change start music, tap up arrow button or down arrow button.
if not play music,tap table cell.
cell will be change skyblue to white.
skyblue:play music
white:not play music

if tap play button, play music.
if tap X button,hidden table list in the screen.

if image exists in music file,
display music image at the screen.

screen function:
(1)image
display music image if has music file.
(2)passed play time
display passed play time left position of play slider.
(3)play slider
if change slider position, change play position and play music.
(4)remainder time
display play reimainder time of choose music file.
(5)title
display music info string right to left.
(6)volume
default volume is 5.
it tap back button,
save current volume size in this application data.
if next open this screen,
load previous volume is used.
(7)first
choose music top of list and play.
(8)before
play previous music file and play.
※use music file of choose list.
(9)stop
stop play music.
(10)play
play music.
if tap change function.
ex.)
pause > play > pause
(11)next
play next music.
※use music file of choose list.
(12)last
choose music last of list and play.
(13)back button
back to the previous screen.
(14)repeat
if tap change function.
ex.)
non-repeat
repeat(ALL)
repeat one(once time)
(15)random
if tap change function.
ex.)
non-random
random
(16)lsit
display play list.

※this function help add schedule after version.
1.5
Feb 22, 2018
withAppData
version 1.5

[New funtion]
add help ver 1.4 function.
main of contents:

Web browser(download) screen
"Web browser(download)" in menu screen list.
if tap "Web browser(download)",open browser screen.

[Web browser(download) screen]
if link tap on web page, display dialog.
(1)open URL link
(2)download from URL link
(3)copy URL link

select option button and OK button.
if select "(1)open URL link",
if selected URL link is not https,don't open web page.
※ATS(iOS system) system has secure web page only open.

input or paste url in URL textbox and
if tap download button,file of url download.
if finish download,notice show dialog box.
download place:root folder
if exists same file, download file name :
xxx.txt -> xxx (1).txt

"favor" button:
open favor list screen.

[favor list sceen]
"set home" button:
register url in textbox as home url.

"register" butotn:
register url in textbox to favor list.

"remove" button:
remove selected favor data in table list.

"choose" button:
if select one favor in the table list,
set url to back screen's url textbox.
if view url web page, tap "->" button(right position of url textbox).

"encode" button:
encode url in textbox.

"decode" button:
decode url in textbox.

"copy URL" button:
copy (clipboard) url in textbox.

"back" button:
back to the before screen.

best regards, abc3.me
by abc3.me
1.4
Feb 16, 2018
withAppData
version 1.4

[New funtion]

Web browser(download) screen
"Web browser(download)" in menu screen list.
if tap "Web browser(download)",open browser screen.

[Web browser(download) screen]
if link tap on web page, display dialog.
(1)open URL link
(2)download from URL link
(3)copy URL link

select option button and OK button.
if select "(1)open URL link",
if selected URL link is not https,don't open web page.
※ATS(iOS system) system has secure web page only open.

input or paste url in URL textbox and
if tap download button,file of url download.
if finish download,notice show dialog box.
download place:root folder
if exists same file, download file name :
xxx.txt -> xxx (1).txt

"favor" button:
open favor list screen.

[favor list sceen]
"set home" button:
register url in textbox as home url.

"register" butotn:
register url in textbox to favor list.

"remove" button:
remove selected favor data in table list.

"choose" button:
if select one favor in the table list,
set url to back screen's url textbox.
if view url web page, tap "->" button(right position of url textbox).

"encode" button:
encode url in textbox.

"decode" button:
decode url in textbox.

"copy URL" button:
copy (clipboard) url in textbox.

"back" button:
back to the before screen.

※this function help add ver1.5 .

best regards, abc3.me
by abc3.me
1.3
Feb 9, 2018
withAppData
ver 1.3

[new function add]
implemented unzipped processing of zip file.
password is also supported.

[step]
menu screen > folder manage screen > switch file view tab
select zip file in the list.

open unzipped screen.

if zip file has password, display textbox in the screen.
input password in the textbox.

tap unzip button.

if wrong password or destroy zip file,
it is not able to unzip processing.
if wrong password, retry input correct password in the textbox.

if success unzip, display unzipped folders and files in the list.

select you want to copy folders and files.
if selected folders and files, tap copy button.

copied folder is root folder.

example when file name is duplicated.
ex.)[before] xxx.txt[after] xxx (1).txt

best regards, abc3.me

by abc3.me
1.2
Feb 1, 2018
withAppData
ver 1.2

[add new function]
add play movie file function.

1.play movie extension
possiblity movie type:
(1)mp4
(2)mov

2.function
characteristic that switch screen vertical and horizontal screen/
and save image that play and stop movie screen capture.

before button
selected previous file in the movie list.
the part where the movie file name is displayed is the movie file name you are about to select.
movie file name is displayed.
to display the name of the currently displayed movie file,tap the load button and select the cancel button on the confirmation dialog.
a confirmation dialog will be displayed.
if you tap OK button, the selected movie will be played.ß

load button
load selected movie file.
display confirmation dialog.
OK butotn:view selected movie file.
Cancel button:display current movie file name.

next button
selected next file in the movie list.
the part where the movie file name is displayed is the movie file name you are about to select.
movie file name is displayed.
to display the name of the currently displayed movie file,tap the load button and select the cancel button on the confirmation dialog.
a confirmation dialog will be displayed.
if you tap OK button, the selected movie will be played.

layout button
switch movie sceen horizontally and vertically.
did not implement iPhone titled.
implemented a layout button.
it is a possibility that it may not be possible to deal with Apple's specification change.
full screen is only vertical type.

capture button
when capture button,
an image is created in the root folder.
example when file name is duplicated.
ex.)[before] xxx.txt[after] xxx (1).txt

best regards, abc3.me

by abc3.me
1.1
Jan 26, 2018
withAppData
version 1.1

[function]
add help documents.

best regards, abc3.me
by abc3.me
1.0
Jan 26, 2018

withAppData FAQ

Click here to learn how to download withAppData in restricted country or region.
Check the following list to see the minimum requirements of withAppData.
iPhone
Requires iOS 9.0 or later.
iPad
Requires iPadOS 9.0 or later.
iPod touch
Requires iOS 9.0 or later.
withAppData supports Japanese

withAppData Alternative

You May Also Like

Get more from Kiyotaka Hori