Skip to content

Instantly share code, notes, and snippets.

View pavelpoley's full-sized avatar

Pavel Poley pavelpoley

View GitHub Profile
@pavelpoley
pavelpoley / ProjectsActivity.java
Created May 1, 2019 17:37
Realm PermissionManager issue
/*
* Copyright 2018 Realm Inc.
*
* 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
@pavelpoley
pavelpoley / MapFragment.java
Last active June 26, 2018 08:32
Google MapView with Fragment
class MapsFragment : Fragment(), OnMapReadyCallback {
private lateinit var mMap: GoogleMap
private var mapView: MapView? = null
override fun onCreateView(inflater: LayoutInflater, container: ViewGroup?, savedInstanceState: Bundle?): View? {
val v = inflater.inflate(R.layout.fragment_maps, container, false)
mapView = v.mapView
jobb location
\AppData\Local\Android\sdk\tools\bin
create obb with pass (not working for me)
jobb -d <PATH_TO_ASSETS> -o main.<VERSION_CODE>.<PACKAGE_NAME>.obb -k <PASS> -pn <PACKAGE_NAME> -pv <VERSION_CODE>
create obb without pass
jobb -d <PATH_TO_ASSETS> -o main.<VERSION_CODE>.<PACKAGE_NAME>.obb -pn <PACKAGE_NAME> -pv <VERSION_CODE>