com.thewebsnippet.service
                  Owner:
                  
                    
                    Zan Bezjak
                  
                
Plugin for parsing tws-service.json, works along with com.thewebsnippet dependency
Sources: https://github.com/inovait/tws-android
Version 1.6.8 (latest)
Created 19 September 2025.
                Plugin for parsing tws-service.json, works along with com.thewebsnippet dependency
                
            
            
            
                
            
            
        Add this plugin to your build using the plugins DSL:
plugins {
  id("com.thewebsnippet.service") version "1.6.8"
}
              See also:
- 
                
Adding the plugin to build logic for usage in precompiled script plugins.
See the relevant documentation for more information.
Add this plugin as a dependency to
<convention-plugins-build>/build.gradle(.kts):dependencies { implementation("com.thewebsnippet.service:com.thewebsnippet.service.gradle.plugin:1.6.8") }It can then be applied in the precompiled script plugin:plugins { id("com.thewebsnippet.service") } - 
                
The legacy method of plugin application.
See the relevant documentation for more information.buildscript { repositories { gradlePluginPortal() } dependencies { classpath("com.thewebsnippet.service:com.thewebsnippet.service.gradle.plugin:1.6.8") } } apply(plugin = "com.thewebsnippet.service") - Applying plugins to all subprojects .