| /expo/apps/native-component-list/src/screens/ |
| H A D | TaskManagerScreen.tsx | 18 const [tasks, setTasks] = React.useState<TaskManager.TaskManagerTask[]>([]); 21 const tasks = await TaskManager.getRegisteredTasksAsync(); 22 setTasks(tasks); 27 TaskManager.getRegisteredTasksAsync().then((tasks) => { 28 if (isActive) setTasks(tasks); 46 const buttons = tasks.map(({ taskName }) => { 60 {tasks!.length > 0 && ( 64 title="Unregister all tasks" 102 if (!tasks) { 108 <HeadingText>Registered tasks</HeadingText> [all …]
|
| /expo/tools/src/ |
| H A D | TasksRunner.ts | 47 tasks: Task<Args>[] | Task<Args>; 63 tasks: string[]; 98 readonly tasks: Task<Args>[]; property in TaskRunner 126 const { tasks, ...rest } = descriptor; constant 128 this.tasks = ([] as Task<Args>[]).concat(tasks); 129 this.resolvedTasks = resolveTasksList(this.tasks); 174 arraysCompare(backup.tasks, this.tasks, tasksComparator) 192 tasks: this.tasks.map((task) => task.name), 223 const tasks = this.resolvedTasks.filter((task, taskIndex) => { constant 229 for (const task of tasks) { [all …]
|
| /expo/tools/src/vendoring/devmenu/ |
| H A D | Pipe.ts | 53 public addSteps(...tasks: (Task | string | Task[])[]): this { 55 tasks.forEach((task) => { 81 const tasks = this.platformSpecificTasks constant 96 for (const task of tasks) {
|
| /expo/packages/expo-modules-core/android/ |
| H A D | ExpoModulesCorePlugin.gradle | 135 def buildTasks = project.tasks.findAll { task -> 168 …def createNativeDepsDirectories = project.tasks.findByName('createNativeDepsDirectories') ?: proje… 212 def downloadFolly = project.tasks.create('downloadFolly', project.Download) { 220 def prepareFolly = project.tasks.register('prepareFolly', Copy) { 254 nativeBuildDependsOn(project, project.tasks.named(it), null) 258 def preDebugBuild = project.tasks.named('preDebugBuild') 259 def preReleaseBuild = project.tasks.named('preReleaseBuild') 268 // between configureCMake* tasks and the preBuild tasks. 270 project.tasks.named('configureCMakeDebug').configure { 273 project.tasks.named('configureCMakeRelWithDebInfo').configure { [all …]
|
| /expo/packages/@expo/cli/src/start/platforms/android/ |
| H A D | gradle.ts | 19 tasks = [cmd + upperFirst(variant)], 20 }: { tasks?: string[]; variant: string; appName: string } 22 return appName ? tasks.map((task) => `${appName}:${task}`) : tasks;
|
| /expo/packages/expo-task-manager/build/ |
| H A D | TaskManager.js | 3 const tasks = new Map(); constant 29 tasks.set(taskName, taskExecutor); 38 return tasks.has(taskName); 135 const taskExecutor = tasks.get(taskName);
|
| /expo/packages/expo-task-manager/src/ |
| H A D | TaskManager.ts | 89 const tasks: Map<string, TaskManagerTaskExecutor<any>> = new Map< constant 123 tasks.set(taskName, taskExecutor); 133 return tasks.has(taskName); 243 const taskExecutor = tasks.get(taskName);
|
| /expo/packages/expo-network-addons/expo-network-addons-gradle-plugin/ |
| H A D | build.gradle.kts | 1 import org.jetbrains.kotlin.gradle.tasks.KotlinCompile 23 tasks.withType<KotlinCompile> { in <lambda>()
|
| /expo/packages/expo-dev-launcher/expo-dev-launcher-gradle-plugin/ |
| H A D | build.gradle.kts | 1 import org.jetbrains.kotlin.gradle.tasks.KotlinCompile 23 tasks.withType<KotlinCompile> { in <lambda>()
|
| /expo/packages/expo-updates/expo-updates-gradle-plugin/ |
| H A D | build.gradle.kts | 1 import org.jetbrains.kotlin.gradle.tasks.KotlinCompile 24 tasks.withType<KotlinCompile> { in <lambda>()
|
| /expo/android/vendored/sdk49/@react-native-async-storage/async-storage/android/ |
| H A D | testresults.gradle | 3 import org.gradle.api.tasks.testing.logging.TestExceptionFormat 4 import org.gradle.api.tasks.testing.logging.TestLogEvent 5 tasks.withType(Test) {
|
| /expo/android/vendored/unversioned/@react-native-async-storage/async-storage/android/ |
| H A D | testresults.gradle | 3 import org.gradle.api.tasks.testing.logging.TestExceptionFormat 4 import org.gradle.api.tasks.testing.logging.TestLogEvent 5 tasks.withType(Test) {
|
| /expo/android/vendored/sdk48/@react-native-async-storage/async-storage/android/ |
| H A D | testresults.gradle | 3 import org.gradle.api.tasks.testing.logging.TestExceptionFormat 4 import org.gradle.api.tasks.testing.logging.TestLogEvent 5 tasks.withType(Test) {
|
| /expo/packages/expo-constants/scripts/ |
| H A D | get-app-config-android.gradle | 25 def currentBundleTask = tasks.register("create${targetName}ExpoConfig", Exec) { 46 def currentCopyAppConfigTask = tasks.register("copy${targetName}ExpoConfig", Copy) { 56 def currentCleanupAppConfigTask = tasks.register("cleanup${targetName}ExpoConfig", Delete) { 67 …// In summary, these tasks try to create `src/${targetPath}/assets/app.config` in building time fo… 69 tasks.findByPath(packageTaskName).dependsOn(currentCopyAppConfigTask) 70 tasks.findByPath("process${targetName}JavaRes").dependsOn(currentCleanupAppConfigTask)
|
| /expo/android/versioned-abis/expoview-abi47_0_0/src/main/java/abi47_0_0/expo/modules/taskManager/repository/ |
| H A D | TasksPersistence.java | 38 Map<String, Object> tasks = new HashMap<>(); in persistTasksForAppScopeKey() local 43 tasks.put(task.getName(), taskConfig); in persistTasksForAppScopeKey() 48 appConfig.put("tasks", tasks); in persistTasksForAppScopeKey() 73 app.tasks = tasksForApp; in readPersistedTasks()
|
| /expo/packages/expo-task-manager/android/src/main/java/expo/modules/taskManager/repository/ |
| H A D | TasksPersistence.java | 38 Map<String, Object> tasks = new HashMap<>(); in persistTasksForAppScopeKey() local 43 tasks.put(task.getName(), taskConfig); in persistTasksForAppScopeKey() 48 appConfig.put("tasks", tasks); in persistTasksForAppScopeKey() 73 app.tasks = tasksForApp; in readPersistedTasks()
|
| /expo/android/versioned-abis/expoview-abi49_0_0/src/main/java/abi49_0_0/expo/modules/taskManager/repository/ |
| H A D | TasksPersistence.java | 38 Map<String, Object> tasks = new HashMap<>(); in persistTasksForAppScopeKey() local 43 tasks.put(task.getName(), taskConfig); in persistTasksForAppScopeKey() 48 appConfig.put("tasks", tasks); in persistTasksForAppScopeKey() 73 app.tasks = tasksForApp; in readPersistedTasks()
|
| /expo/android/versioned-abis/expoview-abi48_0_0/src/main/java/abi48_0_0/expo/modules/taskManager/repository/ |
| H A D | TasksPersistence.java | 38 Map<String, Object> tasks = new HashMap<>(); in persistTasksForAppScopeKey() local 43 tasks.put(task.getName(), taskConfig); in persistTasksForAppScopeKey() 48 appConfig.put("tasks", tasks); in persistTasksForAppScopeKey() 73 app.tasks = tasksForApp; in readPersistedTasks()
|
| /expo/packages/expo-task-manager/ios/EXTaskManager/ |
| H A D | EXTaskService.m | 183 for (NSString *taskName in tasks) { 212 // Inform requests about finished tasks 367 …* Returns dictionary of tasks for given appId. Dictionary in which the keys are the names for tas… 405 NSMutableDictionary *tasks = [appDict[@"tasks"] mutableCopy] ?: [NSMutableDictionary new]; 409 [appDict setObject:tasks forKey:@"tasks"]; 424 NSMutableDictionary *tasks = [appDict[@"tasks"] mutableCopy]; 426 if (tasks != nil) { 427 [tasks removeObjectForKey:taskName]; 429 if ([tasks count] > 0) { 430 [appDict setObject:tasks forKey:@"tasks"]; [all …]
|
| /expo/ios/versioned/sdk47/EXTaskManager/EXTaskManager/ |
| H A D | ABI47_0_0EXTaskService.m | 183 for (NSString *taskName in tasks) { 212 // Inform requests about finished tasks 367 …* Returns dictionary of tasks for given appId. Dictionary in which the keys are the names for tas… 405 NSMutableDictionary *tasks = [appDict[@"tasks"] mutableCopy] ?: [NSMutableDictionary new]; 409 [appDict setObject:tasks forKey:@"tasks"]; 424 NSMutableDictionary *tasks = [appDict[@"tasks"] mutableCopy]; 426 if (tasks != nil) { 427 [tasks removeObjectForKey:taskName]; 429 if ([tasks count] > 0) { 430 [appDict setObject:tasks forKey:@"tasks"]; [all …]
|
| /expo/ios/versioned/sdk49/EXTaskManager/EXTaskManager/ |
| H A D | ABI49_0_0EXTaskService.m | 183 for (NSString *taskName in tasks) { 212 // Inform requests about finished tasks 367 …* Returns dictionary of tasks for given appId. Dictionary in which the keys are the names for tas… 405 NSMutableDictionary *tasks = [appDict[@"tasks"] mutableCopy] ?: [NSMutableDictionary new]; 409 [appDict setObject:tasks forKey:@"tasks"]; 424 NSMutableDictionary *tasks = [appDict[@"tasks"] mutableCopy]; 426 if (tasks != nil) { 427 [tasks removeObjectForKey:taskName]; 429 if ([tasks count] > 0) { 430 [appDict setObject:tasks forKey:@"tasks"]; [all …]
|
| /expo/ios/versioned/sdk48/EXTaskManager/EXTaskManager/ |
| H A D | ABI48_0_0EXTaskService.m | 183 for (NSString *taskName in tasks) { 212 // Inform requests about finished tasks 367 …* Returns dictionary of tasks for given appId. Dictionary in which the keys are the names for tas… 405 NSMutableDictionary *tasks = [appDict[@"tasks"] mutableCopy] ?: [NSMutableDictionary new]; 409 [appDict setObject:tasks forKey:@"tasks"]; 424 NSMutableDictionary *tasks = [appDict[@"tasks"] mutableCopy]; 426 if (tasks != nil) { 427 [tasks removeObjectForKey:taskName]; 429 if ([tasks count] > 0) { 430 [appDict setObject:tasks forKey:@"tasks"]; [all …]
|
| /expo/packages/expo-updates/expo-updates-gradle-plugin/src/main/kotlin/expo/modules/updates/ |
| H A D | ExpoUpdatesPlugin.kt | 12 import org.gradle.api.tasks.Input in <lambda>() 13 import org.gradle.api.tasks.OutputDirectory in <lambda>() 14 import org.gradle.api.tasks.TaskAction in <lambda>() 39 …val createManifestTask = project.tasks.register("create${targetName}ExpoManifest", CreateManifestT… in <lambda>()
|
| /expo/packages/expo-camera/android/src/main/java/expo/modules/camera/tasks/ |
| H A D | PictureSavedDelegate.kt | 1 package expo.modules.camera.tasks
|
| /expo/android/versioned-abis/expoview-abi48_0_0/src/main/java/abi48_0_0/expo/modules/camera/tasks/ |
| H A D | PictureSavedDelegate.kt | 1 package abi48_0_0.expo.modules.camera.tasks
|