Showing posts with label based. Show all posts
Showing posts with label based. Show all posts

Thursday, 28 July 2016

Rom based on KK



Hi guys,

Can the people do the feedback about the lasted (Actual ) KK roms on this forum.

I'm loaking for a rom with some customs and more updated possibly.
My favorite rom it's the Slim Kat, but the lack of personalisation "Themes" it's a sad ROM. And has a anoing bug, the tones, loses every time é do the reboot ur conect to PC. (I now it resolves passing the tones to internal memory, but some times i forgot... to pass the new tones.)

The lasted rom I nowit's the CM 11. but the lack of personalisation, like the network traffic, the visual efects, and sow one...

So i create this posto for only KK roms for the people and share the experience.
Forget the 5.1/6.0. I try all the roms on this forum, and pass a 2/3 days it lags really must.



LP based Custom ROM on N910F



Got myself a used N910F the other day. Pristine condition, still has 0x0 KNOX.

Anyway, stock Marshmallow sucks and I'm a sucker for AOSP, so I've got a few questions:

1) Can I flash CM12.1 on my phone without downgrading the bootloader?

2) Why is the SD Note 4 still on CM12.1?

3) Why are they not nightlies and why is it one build every 2 weeks? Why not just upload a snapshot build instead?

4) Shouldn't sources be released for Marshmallow so CM13 can be developed?

All replies will be appreciated.

Sent from my SM-G928C



Wednesday, 27 July 2016

New R1 HD Custom ROM (based on stock) Incoming. What would you like to see?



I'm currently working on a custom ROM for this device that's based upon the stock ROM. My goal is to give people an easy one click installation for a nice Android experience before we are able to make custom ROMs. My question here is what would you guys like to see in such a ROM.

The current list of planned features is as follows:
  • Pre-rooted (systemless)

  • SuperSU

  • Xposed (systemless)

  • DVDandroid Xposed Installer

  • Debloated

  • ALL Amazon junk removed

  • No Amazon Ads

  • Most Google junk removed

  • Play Store stays
    [***]Google Search stays
    [***]Everything else is removed (except those mentioned in the next section)
    [***]You can reinstall any of the removed apps from the Play Store at any time
    [**]Extraneous or useless MediaTek junk removed
    [**]Crappy stock apps removed/replaced
    [***]File manager removed
    [***]Camera removed (to be replaced)
    [***]Gallery removed (to be replaced)
    [***]Videos app removed
    [***]Wireless Update removed

  • OTA Updates completely removed

  • Auto power on/off feature removed (it's a horribly buggy feature, don't want to deal with it)

  • BusyBox (system)

  • Terminal Emulator included

  • AOSP SystemUI Sounds

  • Based on Stock version 6.1

  • For Amazon Prime edition (I will add support for non-Prime phones once we've confirmed that they can share ROMs)


Features I'm considering/finding solutions for:
- Chrome or AOSP Browser
- Gmail or AOSP Email
- Google Calendar or AOSP Calendar
- Google Keyboard or AOSP Keyboard
- Google Messenger or AOSP SMS App
- Music Player (need a good app, taking recommendations)
- File Manager (need a good app, taking recommendations)
- Camera (need a good app, taking recommendations)
- Gallery (need a good app, taking recommendations)
- CyanogenMod cLock (for homescreen only)
- AudioFX
- GravityBox included
- InstallerOpt included (enhances application installer and App Info dialogs)
- Recently included
- LiveBoot included
- AdAway included
- Your idea here! I'm looking for more feedback!

So, is there anything else you'd like to see? What are your thoughts on the things on this list? I made this thread because I want to hear what other people would like in a custom ROM that we can use until we get real custom ROMs on this thing.



Wednesday, 20 July 2016

Can't install Xposed on a CM13 based ROM



I'm on Resurrection Remix (kenzo) by Siddhesh and I'm unable to flash Xposed zip, as can be seen below. The system is mounted as "read-only" and Xposed can't modify the necessary archives.

Anybody facing the same issue? How did you fix that? I don't know what I'm doing wrong.




Tuesday, 19 July 2016

[ROM] [Project Spectrum] [BETA] Based on Android M for OPPO F1 is now available for



Project Spectrum for F1 is released on the official oppo forum. This is a official rom based on Android M AOSP. It Does include some color os features:-
1. Screen-off Gestures:
Project Spectrum now supports double tap to wake up/turn off the screen, draw a circle to open the camera app and custom a gesture to open an application.
This feature is turned off by default, to use it please enable it in Settings -> Accessibility -> Screen-off gestures
After you've added a custom gesture to delete or modify it please swipe the item left

2. ColorOS Camera
The Camera app ported from ColorOS is supporting the following plugins: Beautify, Filters, Panorama, HDR, GIF, Double exposure and Expert Mode

3. ColorOS Photos
The Photos app is a simplified version from ColorOS with key features needed to work properly with the Camera App

4. Beautiful Wallpapers
We've carefully selected some beautiful wallpapers from ColorOS as preset wallpapers for you

5. OTA package support
For future Project Spectrum versions OTA package will be available along with the full wipe package.

This is still in Beta. F1 Project Spectrum V1.0i Beta released now. Please follow the below link for download and instruction:-
http://community.oppo.com/en/forum.p...d=46517&extra=

For any update and all oppo f1 official downloads follow this link:- http://community.oppo.com/en/forum.p...tegory&fid=301



Monday, 18 July 2016

Need Help with GPS location based apps



Hello everybody,

Been looking for a while for a GPS based location and directions app that has the following functionality

1. Pinpoint any location on a map and save the location by giving it a unique ID (alphanumeric)
2. Share this ID with your friends using the same app by sending this ID via the app or email or sms.
3. Users use this ID for location and/or directions instead of typing the entire address or GPS coordinates.
4. App can use google maps or Nokia maps or other maps.

Please suggest some apps with similar functionality.

Much appreciated.

Johan Agonda



How to long press on my app based webview



Hi guy this is my first application android, i using android studio and i need the help. i long press in not show context menu to download the image, below I leave the code if someone is kind enough to give me help.



Code:


import android.content.Context;
import android.media.AudioManager;
import android.os.Bundle;
import android.support.v7.app.AppCompatActivity;
import android.view.KeyEvent;
import android.view.View;
import android.webkit.WebChromeClient;
import android.webkit.WebView;
import android.webkit.WebViewClient;
import android.widget.ProgressBar;

public class MainActivity extends AppCompatActivity {
    WebView webView;
    ProgressBar progressBar;
    private AudioManager audio;

    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_main);
        audio = (AudioManager) getSystemService(Context.AUDIO_SERVICE);

        webView = (WebView) findViewById(R.id.webView);

        webView.setWebViewClient(new WebViewClient());

        webView.getSettings().setSupportZoom(true);
        webView.setVerticalScrollBarEnabled(true);
        webView.setHorizontalScrollBarEnabled(true);
        webView.getSettings().setLoadWithOverviewMode(true);
        webView.getSettings().setUseWideViewPort(true);
        //webView.getSettings().setBuiltInZoomControls(true);
        webView.loadUrl("https://alpha.wallhaven.cc/");



        //Barra de progreso
        progressBar = (ProgressBar) findViewById(R.id.progressBar);
        webView.setWebChromeClient(new WebChromeClient() {
            @Override
            public void onProgressChanged(WebView view, int progress) {
                progressBar.setProgress(0);
                progressBar.setVisibility(View.VISIBLE);
                MainActivity.this.setProgress(progress * 1000);
                progressBar.incrementProgressBy(progress);
                if (progress == 100) {
                    progressBar.setVisibility(View.GONE);
                }
            }
        });


        /*Adding shortcut for MainActivity
        //on Home screen
        Intent shortcutIntent = new Intent(getApplicationContext(),
                MainActivity.class);

        shortcutIntent.setAction(Intent.ACTION_MAIN);

        Intent addIntent = new Intent();
        addIntent.putExtra(Intent.EXTRA_SHORTCUT_INTENT, shortcutIntent);
        addIntent.putExtra(Intent.EXTRA_SHORTCUT_NAME, "HelloWorldShortcut");
        addIntent.putExtra(Intent.EXTRA_SHORTCUT_ICON_RESOURCE,
                Intent.ShortcutIconResource.fromContext(getApplicationContext(),
                        R.drawable.ic_launcher));
        addIntent.putExtra("duplicate", false);
        addIntent.setAction("com.android.launcher.action.INSTALL_SHORTCUT");
        getApplicationContext().sendBroadcast(addIntent);*/

    }






    @Override
    public boolean onKeyDown(int keyCode, KeyEvent event) {

        switch (keyCode) {
            case KeyEvent.KEYCODE_VOLUME_UP:
                audio.adjustStreamVolume(AudioManager.STREAM_MUSIC,
                        AudioManager.ADJUST_RAISE, AudioManager.FLAG_SHOW_UI);
                return true;
            case KeyEvent.KEYCODE_VOLUME_DOWN:
                audio.adjustStreamVolume(AudioManager.STREAM_MUSIC,
                        AudioManager.ADJUST_LOWER, AudioManager.FLAG_SHOW_UI);
                return true;
            case KeyEvent.KEYCODE_BACK:
                if (webView.canGoBack()) {
                    //if Back key pressed and webview can navigate to previous page
                    webView.goBack();
                    // go back to previous page
                    return true;
                } else {
                    finish();
                    // finish the activity
                }
                return super.onKeyDown(keyCode, event);
            default:
                return false;
        }


    }



}





Sunday, 17 July 2016

Stock based ROMs switching from 4G to 1x to roaming to no data



I've tried flashing the 10b tot and then using the 47a rom, and I've also tried VS985 v2.0 both with the same issues. I'm running 35b bootstack. It seems random whenever it switches, as it goes from 4g to 1x to roaming (both on 4g and 1x) to no data.

The "Rode" Warrior gave me some suggestions about trying from stock 10b, but still having data issues.

If anyone has a solution please let me know, I want to avoid running stock at all costs :/



Saturday, 16 July 2016

Making a CM13 based custom ROM?



Hello Everyone!

I was wondering if it would be possible to create a CyanogenMod based ROM for these headunits. I currently have an Eonon GA5163F. I don't have any experience with developing on the Android platform, but I am willing to put in the effort if someone would be able to help me get started on the project, if it is possible, of course.

Thanks!



Mobile Data connection not working in all Lollipop based roms



i have a i9305 Phone i flashed many Lollipop based roms like cm12, cm12.1, pa, aosp but my mobile data connection not working in any lollipop based rom
i tried Marshmallow based roms and mobile data works fine but not in lollipop roms. please help i want to flash cm12.1 Rom with working mobile data connection pls. help me i have Vodafone IN Sim card



Friday, 15 July 2016

Bootloop on installing AOSP based ROMs



Hi.
I had an issue with my phone and I flashed a stock LG KDZ to go back to stock before sending my phone to LG.

Now, after having re-rooted my phone, via the 1-Click Root tool for LL, I can only install stock based ROMs such as Fulmics 5.1, but if I try to install an AOSP ROM such as Exodus/Candy6/RR/etc, I get a soft boot loop after rebooting from TWRP..

Using latest 3.0.2-0 TWRP recovery.

Anyone got any ideas?

Note, I was running AOSP based ROMs for the last year without issue..



Thursday, 14 July 2016

Questions regarding custom ROM based on 6.0.1 for RN3 SD variant:



The custom ROMs based on Android 6.0.1 for redmi note 3 snapdragon variant support dual sim?

Do i need to flash cm13 radio files to get dual sim support?

If yes,then will the bootloader get updated to MM version ?

If the bootloader is updated to MM version then will i be able to revert back to miui backup that i have created in official twrp?



Tuesday, 12 July 2016

Prediction: surge of phones purchases based on battery life



With the release of Pokemon Go (and no, this isn't a PoGo thread), people are going to seriously consider battery life as a a major consideration to their phones. One report (http://mashable.com/2016/07/07/pokem.../#pnNwsOXQNkqJ) had the game burn through an Iphone 6s's battery in 3 hours playing "the game". That's from full to 0% in 3 hours. For comparison, Apple rates HD playback for this device is rated at 11 hours (http://www.apple.com/iphone-6s/specs/). This, along with my own observations of using my Nexus 6 with Google Cardboard at a family outing shows:

1. Applications like PoGo are going to cause a decreased lifespan in batteries that in as early as a few months, and will trigger an upswing in premature phone deaths just in time for Xmas 2016...
2. The capability of the phones are far surpassing the ability of the battery to keep up;
3. People are coming up with new ways to use the capabilities of phones, in ways they are not honestly designed for, and this will only get worse;
4. If the idea of a phone lasting two years is going to hold up (as many are purchased on a two year model), battery capacity needs to become a bigger focus than "make it thin".

Additionally, I suspect that battery death is one of the major drivers of new phone adoption. Yes, the ability to recharge a phone faster is great, but the more cycles you put on the phone, the faster the battery degrades. If you can't dribble charge your phone overnight and have a full day's use out of it on a HEAVY day, then the battery isn't correctly sized. More to the point, if a phone can't go for TWO days or more with normal use, it isn't a good choice. I personally believe that major phone manufacturers are designing their systems with the intention that the battery will become a factor triggering the replacement of phones at this point, which is why there are so few phones with replaceable batteries now. Applications like Pokemon Go will simply trigger people to realize just how imbalanced the battery vs. capability spread has become, and may start asking for something different.

Thoughts?



Is it possible to port apps made for arm to Intel x86 based phones?



You know, just like Pokemon GO, is here a way to do that? I really wonder because there are some apps like WiFi Killer doesn't work on Intel cpus.



Monday, 11 July 2016

Wifi slow on CM13 based ROMS - HELP!



Hello, I have an issue with Wifi, it's connecting just fine but it's slow, I have tried with 3 different CM13 based ROM but no luck. My Wifi is fine because the speed is good in other android phones. Is there a fix? What can I do? Thanks in advance!



Trying to downgrade MM to LL and install 5.1.1 based ROM - getting bootloops



Was on rooted stock 6.0.1 and wasn't able to get Xposed working, so I decided I want to go back to 5.1.1. No matter what path I try, I can't get anything except unrooted stock 5.1.1 to boot up.

Here's what I tried
Flash ODIN 5.1.1 DOK2 image > boots up fine
Flashed CF auto root - does not boot up. Keeps rebooting
Wipe everything in TWRP (cache,data, dalvik) > keeps rebooting
Flashed ODIN 5.1.1 DOK2 again > boots up fine
Flashed TWRP in ODIN > can get to TWRP and made nandroid backup
Installed 5.1.1 ROM (TEKXnesis) > does not boot up. Keeps rebooting

What am I doing wrong? Do I need to flash Kernel? Modem? Etc?



S pen Funtionality On CM Based ROMS (2016)



I own Samsung Galaxy Note 2 and now in 2016 its showing its age,especially when on touchwiz based custom roms. Its not their fault since with time simple apps become more CPU and resources demanding and older devices struggle to keep up.One solution is to install mods/custom roms,especially AOSP/CM based roms.
I am currently sporting Resurrection Remix -Marshmallow v5.6.8 with Agni PureCM Kernel v4.5.3 and yeh i am so much happy with my setup.
But i do miss touchwiz features esp. my S pen features and its capabilities.
So this thread is to help out all those who are running aosp/cm based roms and are looking to get some s pen functionality on their roms.

so 1st thing first i am highly thankful to guys at this thread that help me get started with spen features on cm/aosp based rom. Please do check out there thread,you will find it useful. http://forum.xda-developers.com/show....php?t=2611415

1) for s command replacement
there is this paid app called spen command.it works very well,though needs some tinkering to get the best out of it. link to thread: http://forum.xda-developers.com/andr...tylus-t3000448
link to official website: http://www.emandt.net/Android/SPenCommand/Website/

2)for screenshot we have a couple of options:-
a) using spen command app listed above,you can long tap spen on screen to screenshot it and then annotate,crop etc it.
b) use screenshot ultimate app on play store. https://play.google.com/store/apps/d...ultimate&hl=en
Once installed open the app and let it decide best method to take screenshot.You also need to select trigger to screenshot,saving location and other settings as you see fit.once properly configured ,this app works like a charm.see this thread screenshot ultimate section to properly configure this app (text around the screenshot in post) http://forum.xda-developers.com/show....php?t=2611415

After setting up the app,head to spen command app>side panel>settings>quick menu>scroll down to application shortcut tab>press on any blank shortcut no:>select app activities from menu>wait for list to populate>select screenshot ultimate>select viewEmptySearchButton.

3) for snote replacement ,i found squid app to be best . https://play.google.com/store/apps/d...tpapyrus&hl=en

4) for photo annotation (in stock touchwiz gallery,opening image and then option menu gives you this feature to annotate on picture),there is no perfect solution as touchwiz but Skitch by evernote (officially discontinued now) is a close match. you need to share the image to annotate via share button in gallery apps. http://www1.zippyshare.com/v/32aPQrWB/file.html.

5) for s pen attach/detach sounds
,use spen command with sound in ogg format.
6) touchwiz stock camera replacement. there are many good option
a) Camera fv-5 = https://play.google.com/store/apps/d...mera.pro&hl=en. NO VIDEO RECORDING CAPABILITIES
b) Lenovo Supercamera,my favorite one.There are many version . link to official thread and the version i use are here.
official link= http://forum.xda-developers.com/show....php?t=2665714
version i use= http://d-h.st/ZYB
c) Snap camera v8.1.0= this one had better HDR output than lenovo supercamera,but i face storage and saving problem in external sd card. Also i dont like video recording in this app. http://forum.xda-developers.com/show....php?t=2055140
7) touchwiz music = i prefer playerpro. but there are so many i wonder if any audiophile actually use stock app
8) radio app= spirit fm 2 http://forum.xda-developers.com/apps...radio-t2951455
9) action memo= i cant find the link so i will attach the one i am using.

these are the latest to date replacements for spen and touchwiz features for aosp/cm based roms. These are in no way perfect solutions and thus i urge you to help expand the word and help me in improving this article. if you know any better solutions/replacements please post in here.

i am still missing certain s pen and touchwiz features like smart select,smart stay and some others,but well you have to compromise on something to get something better.














Attached Files






File Type: apk Memo-0.6.2.apk -
[Click for QR Code]
(1.75 MB)







Wednesday, 6 July 2016

Honor 5x Custom ROMS - All based on CM13 or Stock, why?



Hi all, I have a conceptual gap. Why are all of the custom ROMS in our dev section based on either Stock or CM13?

Stock makes sense to me; it's taking what we have and modifying it.

So what is special about the CM13 development that others are unable/unwilling to do?

Thanks



[Mod] Invisible soft key Power Button OE2 stock based



This will put an invisible Power Menu button in the far right hand of the status bar. Long press brings up the power button menu, short tap closes and locks screen.

Standard right clock, AmPm
https://www.androidfilehost.com/?fid=24591023225177809

Right clock NO AmPm
https://www.androidfilehost.com/?fid=24591023225177824



Tuesday, 5 July 2016

Building custom ROM based on stock kernel



I want to know that is it possible to have custom rom like cyanogenmod (5.1.1 or 6.0) running on stock kernel . Is anyone working on it ? I know tank0124 had built a aosp 5.0 rom but I (many users) want a custom ROM.