This file contains 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 com.android.build.api.variant.ApplicationAndroidComponentsExtension | |
import org.gradle.api.Plugin | |
import org.gradle.api.Project | |
class CustomPlugin: Plugin<Project> { | |
override fun apply(project: Project) { | |
project.tasks.register("hello"){ task-> | |
task.doLast { | |
println("Hello " + project.parent?.name) | |
} |
This file contains 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 2021 The Android Open Source Project | |
* | |
* Licensed under the Apache License, Version 2.0 (the "License"); | |
* you may not use this file except in compliance with the License. | |
* You may obtain a copy of the License at | |
* | |
* http://www.apache.org/licenses/LICENSE-2.0 | |
* | |
* Unless required by applicable law or agreed to in writing, software |
This file contains 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
package com.example.background.workers | |
import android.content.Context | |
import android.os.SystemClock.sleep | |
import androidx.work.Worker | |
import androidx.work.WorkerParameters | |
class DummyWorker (ctx: Context, params: WorkerParameters) : Worker(ctx, params) { | |
override fun doWork(): Result { |
This file contains 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 2020 Google LLC. | |
SPDX-License-Identifier: Apache-2.0 --> | |
private class NotNullVar<T : Any>() : ReadWriteProperty<Any?, T> { | |
private var value: T? = null | |
public override fun getValue(thisRef: Any?, property: KProperty<*>): T { | |
return value ?: throw IllegalStateException("Property ${property.name} should be initialized before get.") | |
} |
This file contains 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 2020 Google LLC. | |
SPDX-License-Identifier: Apache-2.0 --> | |
public final class Person$$special$$inlined$vetoable$1 extends ObservableProperty { | |
protected boolean beforeChange(@NotNull KProperty property, Object oldValue, Object newValue) { | |
Intrinsics.checkParameterIsNotNull(property, "property"); | |
String newValue = (String)newValue; | |
String var10001 = (String)oldValue; | |
int var7 = false; |
This file contains 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 2020 Google LLC. | |
SPDX-License-Identifier: Apache-2.0 --> | |
var address: String by Delegates.vetoable("") { | |
property, oldValue, newValue -> | |
newValue.length > 14 | |
} |
This file contains 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 2020 Google LLC. | |
SPDX-License-Identifier: Apache-2.0 --> | |
public override fun setValue(thisRef: Any?, property: KProperty<*>, value: T) { | |
val oldValue = this.value | |
if (!beforeChange(property, oldValue, value)) { | |
return | |
} | |
this.value = value | |
afterChange(property, oldValue, value) |
This file contains 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 2020 Google LLC. | |
SPDX-License-Identifier: Apache-2.0 --> | |
protected void afterChange(@NotNull KProperty property, Object oldValue, Object newValue) { | |
// update all existing shipments | |
} |
This file contains 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 2020 Google LLC. | |
SPDX-License-Identifier: Apache-2.0 --> | |
class Person { | |
var address: String by Delegates.observable("not entered yet!") { | |
property, oldValue, newValue -> | |
// update all existing shipments | |
} | |
} |
This file contains 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 2020 Google LLC. | |
SPDX-License-Identifier: Apache-2.0 --> | |
override val value: T | |
get() { | |
val _v1 = _value | |
if (_v1 !== UNINITIALIZED_VALUE) { | |
@Suppress("UNCHECKED_CAST") | |
return _v1 as T | |
} |
NewerOlder