Android: Difference between revisions

From Chorke Wiki
Jump to navigation Jump to search
Line 17: Line 17:
  '''compile''' 'org.jetbrains.anko:anko-design:0.8.3'
  '''compile''' 'org.jetbrains.anko:anko-design:0.8.3'
  '''compile''' 'org.jetbrains.anko:anko-appcompat-v7:0.8.3'
  '''compile''' 'org.jetbrains.anko:anko-appcompat-v7:0.8.3'
==Knowledge==
<source lang="powershell">
Get-WindowsOptionalFeature -Online -FeatureName Microsoft-Hyper-V
Disable-WindowsOptionalFeature -Online -FeatureName Microsoft-Hyper-V
Enable-WindowsOptionalFeature -Online -FeatureName Microsoft-Hyper-V -All
</source>


==References==
==References==
* [https://github.com/google/android-emulator-hypervisor-driver-for-amd-processors/issues/17 Android Emulator Hypervisor Driver for AMD CPU]
* [https://stackoverflow.com/questions/11046258 What is Coredata equivalent for Android]
* [https://stackoverflow.com/questions/11046258 What is Coredata equivalent for Android]
* [https://www.sitepoint.com/building-a-ui-with-kotlin-and-anko/ Building a UI with Kotlin and Anko]
* [https://www.sitepoint.com/building-a-ui-with-kotlin-and-anko/ Building a UI with Kotlin and Anko]

Revision as of 08:54, 19 June 2021

@Rest(rootUrl = "https://api.chorke.org/rest/api", converters = { MappingJackson2HttpMessageConverter.class })
public interface EventsApi {
  @Get("/events/{year}/{location}")
  EventList getEventsByYearAndLocation(@Path int year, @Path String location);

  @Get("/events/{year}/{location}")
  EventList getEventsByLocationAndYear(@Path String location, @Path int year);
}

Redmi Note 5

Settings » About Phone » MIUI Version (TAP 7 more Times)
Settings » Additional Settings » Scroll Down » Developer Options

Anko Layout

compile 'org.jetbrains.anko:anko-design:0.8.3'
compile 'org.jetbrains.anko:anko-appcompat-v7:0.8.3'

Knowledge

Get-WindowsOptionalFeature -Online -FeatureName Microsoft-Hyper-V
Disable-WindowsOptionalFeature -Online -FeatureName Microsoft-Hyper-V
Enable-WindowsOptionalFeature -Online -FeatureName Microsoft-Hyper-V -All

References