This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import android.app.Service; | |
import android.content.ComponentName; | |
import android.content.Context; | |
import android.content.Intent; | |
import android.content.ServiceConnection; | |
import android.os.Binder; | |
import android.os.IBinder; | |
import io.reactivex.Observable; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* | |
* Copyright (c) 2017 PlanGrid, Inc. All rights reserved. | |
*/ | |
package com.plangrid.android.loaders.rx; | |
import android.database.Cursor; | |
import android.support.v4.app.LoaderManager; | |
import android.support.v4.content.CursorLoader; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* | |
* Copyright (c) 2017 PlanGrid, Inc. All rights reserved. | |
*/ | |
package com.plangrid.android.dmodel.mapper; | |
import java.util.concurrent.atomic.AtomicReference; | |
import rx.Observable; | |
import rx.functions.Action1; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Start with JDK7 | |
FROM java:7-jdk | |
# Init dependencies for the setup process | |
RUN dpkg --add-architecture i386 \ | |
&& apt-get update \ | |
&& apt-get install -y \ | |
software-properties-common \ | |
python-software-properties \ | |
unzip \ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* | |
* Copyright (c) 2017 PlanGrid, Inc. All rights reserved. | |
*/ | |
package com.plangrid.android.loaders; | |
import android.os.Bundle; | |
import android.support.v4.app.LoaderManager; | |
import android.support.v4.content.Loader; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* | |
* Copyright (c) 2017 PlanGrid, Inc. All rights reserved. | |
*/ | |
package com.plangrid.android.services.rx; | |
import android.app.Service; | |
import android.content.ComponentName; | |
import android.content.Context; | |
import android.content.Intent; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"recordVersion": 1, | |
"platforms": { | |
"ios": { | |
"releases": { | |
"expired": { | |
"expirationDate": -1, | |
"notes": "Default expired version" | |
} | |
}, |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* | |
* Copyright (c) 2016 PlanGrid, Inc. All rights reserved. | |
*/ | |
package com.plangrid.android.services; | |
import android.app.IntentService; | |
import android.content.Intent; | |
import android.os.Bundle; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
function partial_apply(){ | |
$args = func_get_args(); | |
$funk = array_shift($args); | |
return function() use ($args, $func){ | |
$func_args = func_get_args(); | |
call_user_func_array($funk, $args + func_args); | |
}; | |
} |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.